diff options
| author | Mike Barcroft <mike@FreeBSD.org> | 2001-10-04 04:42:03 +0000 |
|---|---|---|
| committer | Mike Barcroft <mike@FreeBSD.org> | 2001-10-04 04:42:03 +0000 |
| commit | b5c9f90bf5592cab3a420efc396223e437c52f2f (patch) | |
| tree | b2a23c2b1bc30b6c544fa96ef945f341d10d3120 /lib/libc | |
| parent | 19323fdd72e29b87e7cedde19ede440cd9db7509 (diff) | |
Notes
Diffstat (limited to 'lib/libc')
| -rw-r--r-- | lib/libc/net/inet_ntoa.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/libc/net/inet_ntoa.c b/lib/libc/net/inet_ntoa.c index c2105455615a..fbd87fa398f3 100644 --- a/lib/libc/net/inet_ntoa.c +++ b/lib/libc/net/inet_ntoa.c @@ -31,15 +31,16 @@ * SUCH DAMAGE. */ -#if defined(LIBC_SCCS) && !defined(lint) -static char sccsid[] = "@(#)inet_ntoa.c 8.1 (Berkeley) 6/4/93"; -#endif /* LIBC_SCCS and not lint */ +#include <sys/cdefs.h> +__RCSID("@(#)inet_ntoa.c 8.1 (Berkeley) 6/4/93"); +__FBSDID("$FreeBSD$"); #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> #include <stdio.h> +#include <string.h> /* * Convert network-format internet address |
