diff options
author | dd <dd@FreeBSD.org> | 2001-06-24 20:25:23 +0000 |
---|---|---|
committer | dd <dd@FreeBSD.org> | 2001-06-24 20:25:23 +0000 |
commit | e3cab8dc0ccb8294d22f3d896a277e5404f8d59b (patch) | |
tree | e5122aa92326b6b00c8a590e4fcbb135491c25bf /usr.sbin/pw | |
parent | cb7fc9479cb1cc45c9052afd1061601d2b41dafb (diff) | |
download | FreeBSD-src-e3cab8dc0ccb8294d22f3d896a277e5404f8d59b.zip FreeBSD-src-e3cab8dc0ccb8294d22f3d896a277e5404f8d59b.tar.gz |
Include missing header files which define functions for which gcc has
builtints (e.g., exit, strcmp).
Diffstat (limited to 'usr.sbin/pw')
-rw-r--r-- | usr.sbin/pw/rm_r.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.sbin/pw/rm_r.c b/usr.sbin/pw/rm_r.c index 2af9a4e..4ad590b 100644 --- a/usr.sbin/pw/rm_r.c +++ b/usr.sbin/pw/rm_r.c @@ -31,6 +31,7 @@ static const char rcsid[] = #include <stdio.h> #include <stdlib.h> +#include <string.h> #include <sys/types.h> #include <sys/stat.h> #include <sys/param.h> |