summaryrefslogtreecommitdiffstats
path: root/openbsd-compat/inet_ntoa.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2005-11-10 17:23:54 +1100
committerDarren Tucker <dtucker@zip.com.au>2005-11-10 17:23:54 +1100
commitde9d623960b6e5562a73600b225d82c2497dfc58 (patch)
treee11570137ac52b436934c338562a7f23d28bc429 /openbsd-compat/inet_ntoa.c
parentc7e05d679a8fdbc7cfa2eefb54f9fcb84ff715ae (diff)
- (dtucker) [openbsd-compat/inet_nto.c] Update from OpenBSD 1.4 -> 1.6.
Diffstat (limited to 'openbsd-compat/inet_ntoa.c')
-rw-r--r--openbsd-compat/inet_ntoa.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/openbsd-compat/inet_ntoa.c b/openbsd-compat/inet_ntoa.c
index 16390b17..0eb7b3bd 100644
--- a/openbsd-compat/inet_ntoa.c
+++ b/openbsd-compat/inet_ntoa.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: inet_ntoa.c,v 1.6 2005/08/06 20:30:03 espie Exp $ */
/*
* Copyright (c) 1983, 1993
* The Regents of the University of California. All rights reserved.
@@ -33,10 +34,6 @@
#if defined(BROKEN_INET_NTOA) || !defined(HAVE_INET_NTOA)
-#if defined(LIBC_SCCS) && !defined(lint)
-static char rcsid[] = "$OpenBSD: inet_ntoa.c,v 1.4 2003/06/02 20:18:35 millert Exp $";
-#endif /* LIBC_SCCS and not lint */
-
/*
* Convert network-format internet address
* to base 256 d.d.d.d representation.
@@ -46,10 +43,11 @@ static char rcsid[] = "$OpenBSD: inet_ntoa.c,v 1.4 2003/06/02 20:18:35 millert E
#include <arpa/inet.h>
#include <stdio.h>
-char *inet_ntoa(struct in_addr in)
+char *
+inet_ntoa(struct in_addr in)
{
static char b[18];
- register char *p;
+ char *p;
p = (char *)&in;
#define UC(b) (((int)b)&0xff)