xref: /original-bsd/usr.bin/gcore/md-nop.c (revision 410efcb1)
1 /*-
2  * Copyright (c) 1992 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  */
7 
8 #ifndef lint
9 static char sccsid[] = "@(#)md-nop.c	5.5 (Berkeley) 05/25/93";
10 #endif /* not lint */
11 
12 #include <sys/param.h>
13 #include <sys/sysctl.h>
14 
15 #include <stdio.h>
16 #include <kvm.h>
17 #include "extern.h"
18 
19 void
20 md_core(kd, fd, ki)
21 	kvm_t *kd;
22 	int fd;
23 	struct kinfo_proc *ki;
24 {
25 	/* Don't need to fix anything for this architecture. */
26 	return;
27 }
28