diff options
author | grr <grr@cvs.openbsd.org> | 1997-06-28 22:24:25 +0000 |
---|---|---|
committer | grr <grr@cvs.openbsd.org> | 1997-06-28 22:24:25 +0000 |
commit | 357c63ffe3d6f6375f413d3250ebc4a7c5f5b7f6 (patch) | |
tree | 97ceda7e9f7228ba7e2ebb61875b3e3bb0bf7623 /usr.bin | |
parent | 418b3a227759d54c6b908c13661d30ba929fbc43 (diff) |
last of the setlocale() vs locale.h oops's, I hope
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/cksum/cksum.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/cksum/cksum.c b/usr.bin/cksum/cksum.c index 5cc9e2a9440..72d74ce7d5d 100644 --- a/usr.bin/cksum/cksum.c +++ b/usr.bin/cksum/cksum.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cksum.c,v 1.3 1997/06/27 19:02:54 deraadt Exp $ */ +/* $OpenBSD: cksum.c,v 1.4 1997/06/28 22:24:24 grr Exp $ */ /* $NetBSD: cksum.c,v 1.7 1995/09/02 05:45:18 jtc Exp $ */ /*- @@ -47,7 +47,7 @@ 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.3 1997/06/27 19:02:54 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: cksum.c,v 1.4 1997/06/28 22:24:24 grr Exp $"; #endif /* not lint */ #include <sys/cdefs.h> @@ -60,6 +60,7 @@ static char rcsid[] = "$OpenBSD: cksum.c,v 1.3 1997/06/27 19:02:54 deraadt Exp $ #include <stdlib.h> #include <string.h> #include <unistd.h> +#include <locale.h> #include "extern.h" |