diff options
author | jkh <jkh@FreeBSD.org> | 1998-10-09 00:39:09 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1998-10-09 00:39:09 +0000 |
commit | afb7d7e829ec2c519377c2e71e88bf2c8223a5c2 (patch) | |
tree | 8ea8f24c0cedd65d8165b4a390a31e8bb4ffaed5 /lib/libutil/logwtmp.c | |
parent | d8d7e646f416a5174e264ad88911d935fa412354 (diff) | |
download | FreeBSD-src-afb7d7e829ec2c519377c2e71e88bf2c8223a5c2.zip FreeBSD-src-afb7d7e829ec2c519377c2e71e88bf2c8223a5c2.tar.gz |
All these have to include stdio.h now.
Diffstat (limited to 'lib/libutil/logwtmp.c')
-rw-r--r-- | lib/libutil/logwtmp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libutil/logwtmp.c b/lib/libutil/logwtmp.c index 531b715..ee07564 100644 --- a/lib/libutil/logwtmp.c +++ b/lib/libutil/logwtmp.c @@ -36,7 +36,7 @@ static char sccsid[] = "@(#)logwtmp.c 8.1 (Berkeley) 6/4/93"; #else static const char rcsid[] = - "$Id: logwtmp.c,v 1.5 1997/09/04 22:38:59 pst Exp $"; + "$Id: logwtmp.c,v 1.6 1998/06/01 08:46:53 amurai Exp $"; #endif #endif /* LIBC_SCCS and not lint */ @@ -47,6 +47,7 @@ static const char rcsid[] = #include <netinet/in.h> #include <arpa/inet.h> +#include <stdio.h> #include <libutil.h> #include <netdb.h> #include <string.h> |