diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2001-11-07 08:19:44 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2001-11-07 08:19:44 +0000 |
commit | 8c1334564ccd3f597aafad6cad85d156bbdd6070 (patch) | |
tree | 277ad9b9b410685dda091a6b416fd9873e6e9039 /bin/ps | |
parent | aca6c3a414155c2125b3984e83409a1fe9c8a2f3 (diff) |
Use uvm headers.
Diffstat (limited to 'bin/ps')
-rw-r--r-- | bin/ps/print.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/ps/print.c b/bin/ps/print.c index 4b75fac4c25..6866144bb88 100644 --- a/bin/ps/print.c +++ b/bin/ps/print.c @@ -1,4 +1,4 @@ -/* $OpenBSD: print.c,v 1.18 2001/08/13 22:41:16 heko Exp $ */ +/* $OpenBSD: print.c,v 1.19 2001/11/07 08:19:43 miod Exp $ */ /* $NetBSD: print.c,v 1.27 1995/09/29 21:58:12 cgd Exp $ */ /*- @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)print.c 8.6 (Berkeley) 4/16/94"; #else -static char rcsid[] = "$OpenBSD: print.c,v 1.18 2001/08/13 22:41:16 heko Exp $"; +static char rcsid[] = "$OpenBSD: print.c,v 1.19 2001/11/07 08:19:43 miod Exp $"; #endif #endif /* not lint */ @@ -50,7 +50,7 @@ static char rcsid[] = "$OpenBSD: print.c,v 1.18 2001/08/13 22:41:16 heko Exp $"; #include <sys/ucred.h> #include <sys/sysctl.h> -#include <vm/vm.h> +#include <uvm/uvm.h> #include <err.h> #include <grp.h> |