]> granicus.if.org Git - postgresql/commitdiff
Remove uint32 from inet_aton file.
authorBruce Momjian <bruce@momjian.us>
Tue, 16 Sep 1997 16:09:59 +0000 (16:09 +0000)
committerBruce Momjian <bruce@momjian.us>
Tue, 16 Sep 1997 16:09:59 +0000 (16:09 +0000)
src/backend/port/inet_aton.c

index dd7bb5d16d53783f0754dff502a81cd25e60b791..02780d8a0cc60a595e9ea9aaed4da9e3e00626ac 100644 (file)
 #include <ctype.h>
 #include "inet_aton.h"
 
-#ifdef _AIX
-#include <sys/ltypes.h>        /* For definition of uint32 */
-#endif
-
 /*
  * Check whether "cp" is a valid ascii representation
  * of an Internet address and convert to a binary address.
@@ -61,7 +57,7 @@
 int
 inet_aton(const char *cp, struct in_addr * addr)
 {
-       register uint32 val;
+       register unsigned int val;
        register int base,
                                n;
        register char c;