diff options
author | jedgar <jedgar@FreeBSD.org> | 2002-05-11 03:18:14 +0000 |
---|---|---|
committer | jedgar <jedgar@FreeBSD.org> | 2002-05-11 03:18:14 +0000 |
commit | 7a96d67f5288577d7fbb90fc62ed9d2e8f06bb54 (patch) | |
tree | a095fef2b1cd312dbe7536b047d8530218d4e7e1 /usr.bin/passwd | |
parent | 47acb76e7c0e5f3eb29945df277390f6b6e87354 (diff) | |
download | FreeBSD-src-7a96d67f5288577d7fbb90fc62ed9d2e8f06bb54.zip FreeBSD-src-7a96d67f5288577d7fbb90fc62ed9d2e8f06bb54.tar.gz |
#include <stdlib.h> for exit(3) prototype.
Diffstat (limited to 'usr.bin/passwd')
-rw-r--r-- | usr.bin/passwd/passwd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.bin/passwd/passwd.c b/usr.bin/passwd/passwd.c index 9d01454..c66bcb0 100644 --- a/usr.bin/passwd/passwd.c +++ b/usr.bin/passwd/passwd.c @@ -40,6 +40,7 @@ __FBSDID("$FreeBSD$"); #include <err.h> #include <pwd.h> #include <stdio.h> +#include <stdlib.h> #include <syslog.h> #include <unistd.h> |