From: Bruce Momjian Date: Tue, 16 Sep 1997 16:09:59 +0000 (+0000) Subject: Remove uint32 from inet_aton file. X-Git-Tag: REL6_2~177 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0829d2dba80a0022fe49dcd11de93cc3817d283f;p=thirdparty%2Fpostgresql.git Remove uint32 from inet_aton file. --- diff --git a/src/backend/port/inet_aton.c b/src/backend/port/inet_aton.c index dd7bb5d16d5..02780d8a0cc 100644 --- a/src/backend/port/inet_aton.c +++ b/src/backend/port/inet_aton.c @@ -47,10 +47,6 @@ #include #include "inet_aton.h" -#ifdef _AIX -#include /* 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;