kinfo_proc => sysctl
[unix-history] / usr / src / usr.bin / gcore / md-nop.c
CommitLineData
4151532e
SM
1/*-
2 * Copyright (c) 1992 The Regents of the University of California.
3 * All rights reserved.
4 *
5 * %sccs.include.redist.c%
6 */
7
fefc2a22 8#ifndef lint
c97753e8 9static char sccsid[] = "@(#)md-nop.c 5.5 (Berkeley) %G%";
fefc2a22
KB
10#endif /* not lint */
11
4151532e 12#include <sys/param.h>
c97753e8 13#include <sys/sysctl.h>
4151532e 14
680efaea
KB
15#include <stdio.h>
16#include <kvm.h>
17#include "extern.h"
18
19void
4151532e
SM
20md_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. */
680efaea 26 return;
4151532e 27}