diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-12-13 15:28:35 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-12-13 15:28:35 +0000 |
commit | 6ecf3951698a33480b5686c4dee8f9bfad031569 (patch) | |
tree | 7bbda38e32ac17bc0daa8f6811d69bc9a8f266f7 | |
parent | a8135df022f9a6fe46238bb08d9d6cddec149d8d (diff) |
No need to include sys/cdefs.h explicitly here; Andrey Matveev
-rw-r--r-- | usr.bin/cksum/cksum.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/cksum/cksum.c b/usr.bin/cksum/cksum.c index 6eade95fb57..7c1e0d6ab53 100644 --- a/usr.bin/cksum/cksum.c +++ b/usr.bin/cksum/cksum.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cksum.c,v 1.8 2002/02/16 21:27:44 millert Exp $ */ +/* $OpenBSD: cksum.c,v 1.9 2002/12/13 15:28:34 millert Exp $ */ /* $NetBSD: cksum.c,v 1.7 1995/09/02 05:45:18 jtc Exp $ */ /*- @@ -47,10 +47,9 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)cksum.c 8.2 (Berkeley) 4/28/95"; #endif -static char rcsid[] = "$OpenBSD: cksum.c,v 1.8 2002/02/16 21:27:44 millert Exp $"; +static char rcsid[] = "$OpenBSD: cksum.c,v 1.9 2002/12/13 15:28:34 millert Exp $"; #endif /* not lint */ -#include <sys/cdefs.h> #include <sys/types.h> #include <err.h> |