xref: /original-bsd/usr.bin/gcore/md-nop.c (revision af60fb2a)
1 /*-
2  * Copyright (c) 1992, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  */
7 
8 #ifndef lint
9 static char sccsid[] = "@(#)md-nop.c	8.1 (Berkeley) 06/06/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