diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1997-02-11 22:24:21 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1997-02-11 22:24:21 +0000 |
commit | 80aea2f1d26c615419d2d028087115c47f9fd46f (patch) | |
tree | f63dc8d784c2927447f3929c843a58673ed5ffc0 /sbin/ipfstat/kmem.c | |
parent | 5e04debc4b0038a40277cd3f8198955ee51896d3 (diff) |
IPF 1.3.7
Diffstat (limited to 'sbin/ipfstat/kmem.c')
-rw-r--r-- | sbin/ipfstat/kmem.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sbin/ipfstat/kmem.c b/sbin/ipfstat/kmem.c index d11cee49aa6..638fa1cc40a 100644 --- a/sbin/ipfstat/kmem.c +++ b/sbin/ipfstat/kmem.c @@ -19,9 +19,9 @@ #define KMEM "/dev/kmem" -#ifndef lint +#if !defined(lint) && defined(LIBC_SCCS) static char sccsid[] = "@(#)kmem.c 1.4 1/12/96 (C) 1992 Darren Reed"; -static char rcsid[] = "$Id: kmem.c,v 1.5 1996/12/17 23:50:51 niklas Exp $"; +static char rcsid[] = "$Id: kmem.c,v 1.6 1997/02/11 22:23:44 kstailey Exp $"; #endif static int kmemfd = -1; @@ -38,7 +38,7 @@ int openkmem() int kmemcpy(buf, pos, n) register char *buf; -u_long pos; +long pos; register int n; { register int r; |