diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-04-04 16:51:38 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-04-04 16:51:38 +0000 |
commit | c7f23e7aa047b55c1d294dee4251a2259c21a1a6 (patch) | |
tree | 5ebe297d5d22f76c5a2b66ec6b228ae670c6d84d /sbin | |
parent | c1614ca2bd1e5893b747304e084a4c7ff1351f4e (diff) |
#include <string.h> since we use string functions...
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/nologin/nologin.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/nologin/nologin.c b/sbin/nologin/nologin.c index e49feae7a6d..c4132b53424 100644 --- a/sbin/nologin/nologin.c +++ b/sbin/nologin/nologin.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nologin.c,v 1.1 1997/02/16 04:15:32 downsj Exp $ */ +/* $OpenBSD: nologin.c,v 1.2 1997/04/04 16:51:37 millert Exp $ */ /* * Copyright (c) 1997, Jason Downs. All rights reserved. @@ -27,6 +27,7 @@ #include <sys/types.h> #include <fcntl.h> +#include <string.h> #include <unistd.h> /* Distinctly different from _PATH_NOLOGIN. */ |