]> andersk Git - gssapi-openssh.git/blobdiff - openssh/openbsd-compat/inet_ntoa.c
Import of OpenSSH 4.3p1
[gssapi-openssh.git] / openssh / openbsd-compat / inet_ntoa.c
index dc010dc53f8ad757a53c015686157bd0b9522bea..0eb7b3bd76c4fc522f154da17c56e429d2fb7b7f 100644 (file)
@@ -1,5 +1,4 @@
-/* OPENBSD ORIGINAL: lib/libc/net/inet_ntoa.c */
-
+/*     $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.
  * SUCH DAMAGE.
  */
 
+/* OPENBSD ORIGINAL: lib/libc/net/inet_ntoa.c */
+
 #include "includes.h"
 
 #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)
This page took 0.595176 seconds and 4 git commands to generate.