diff options
author | dd <dd@FreeBSD.org> | 2001-06-24 20:05:30 +0000 |
---|---|---|
committer | dd <dd@FreeBSD.org> | 2001-06-24 20:05:30 +0000 |
commit | cb7fc9479cb1cc45c9052afd1061601d2b41dafb (patch) | |
tree | f7c4e3788f605df13c73dd9a28aab1904f1e0c03 | |
parent | dc0185a4595e3c76be40a220d9f40362393b0787 (diff) | |
download | FreeBSD-src-cb7fc9479cb1cc45c9052afd1061601d2b41dafb.zip FreeBSD-src-cb7fc9479cb1cc45c9052afd1061601d2b41dafb.tar.gz |
Include stdlib.h for exit(3).
Submitted by: Mike Barcroft <mike@q9media.com>
-rw-r--r-- | usr.sbin/lastlogin/lastlogin.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr.sbin/lastlogin/lastlogin.c b/usr.sbin/lastlogin/lastlogin.c index e182591..877b215 100644 --- a/usr.sbin/lastlogin/lastlogin.c +++ b/usr.sbin/lastlogin/lastlogin.c @@ -39,6 +39,7 @@ __RCSID("$NetBSD: lastlogin.c,v 1.4 1998/02/03 04:45:35 perry Exp $"); #include <err.h> #include <pwd.h> #include <stdio.h> +#include <stdlib.h> #include <time.h> #include <utmp.h> #include <unistd.h> |