aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1997-09-14 04:06:20 +0000
committerBruce Momjian <bruce@momjian.us>1997-09-14 04:06:20 +0000
commit90bcec36c18fa012e8b505094fc37fa314eebd79 (patch)
treeb45486a86bb2d44104c2590bd81af1407165e92e /src
parent0a3cee72ac0cd0ca695395b92cd74ff026da8e6a (diff)
downloadpostgresql-90bcec36c18fa012e8b505094fc37fa314eebd79.tar.gz
postgresql-90bcec36c18fa012e8b505094fc37fa314eebd79.zip
To find uint32 on AIX.
Diffstat (limited to 'src')
-rw-r--r--src/backend/port/inet_aton.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/backend/port/inet_aton.c b/src/backend/port/inet_aton.c
index 0220507a523..dd7bb5d16d5 100644
--- a/src/backend/port/inet_aton.c
+++ b/src/backend/port/inet_aton.c
@@ -47,6 +47,10 @@
#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.