xref: /original-bsd/usr.bin/gcore/md-nop.c (revision 13ec26c3)
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 #include <stdio.h>
9 #include <kvm.h>
10 #include <sys/param.h>
11 #include <sys/kinfo.h>
12 #include <sys/kinfo_proc.h>
13 
14 md_core(kd, fd, ki)
15 	kvm_t *kd;
16 	int fd;
17 	struct kinfo_proc *ki;
18 {
19 	/* Don't need to fix anything for this architecture. */
20 	return (0);
21 }
22