diff options
author | grr <grr@cvs.openbsd.org> | 1997-06-28 16:41:09 +0000 |
---|---|---|
committer | grr <grr@cvs.openbsd.org> | 1997-06-28 16:41:09 +0000 |
commit | 79b87159aa277d275ae8ed4c8270aa0a9081bd2f (patch) | |
tree | bd8cb30b6b988e4b627013bafe14772d799c4cb1 /usr.sbin | |
parent | 71a22db1b62f471fecf77d49d42b30b9b9fe7b63 (diff) |
same missing locale.h problem as chmod
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/chown/chown.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/chown/chown.c b/usr.sbin/chown/chown.c index ec3e8ae6842..91efb50e440 100644 --- a/usr.sbin/chown/chown.c +++ b/usr.sbin/chown/chown.c @@ -1,4 +1,4 @@ -/* $OpenBSD: chown.c,v 1.6 1997/06/27 19:02:09 deraadt Exp $ */ +/* $OpenBSD: chown.c,v 1.7 1997/06/28 16:41:08 grr Exp $ */ /* * Copyright (c) 1988, 1993, 1994 @@ -41,7 +41,7 @@ static char copyright[] = #ifndef lint /* from: static char sccsid[] = "@(#)chown.c 8.8 (Berkeley) 4/4/94"; */ -static char *rcsid = "$Id: chown.c,v 1.6 1997/06/27 19:02:09 deraadt Exp $"; +static char *rcsid = "$Id: chown.c,v 1.7 1997/06/28 16:41:08 grr Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -58,6 +58,7 @@ static char *rcsid = "$Id: chown.c,v 1.6 1997/06/27 19:02:09 deraadt Exp $"; #include <stdlib.h> #include <string.h> #include <unistd.h> +#include <locale.h> void a_gid __P((char *)); void a_uid __P((char *)); |