diff options
author | Bruce Momjian <bruce@momjian.us> | 1997-09-14 04:06:20 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1997-09-14 04:06:20 +0000 |
commit | 90bcec36c18fa012e8b505094fc37fa314eebd79 (patch) | |
tree | b45486a86bb2d44104c2590bd81af1407165e92e /src | |
parent | 0a3cee72ac0cd0ca695395b92cd74ff026da8e6a (diff) | |
download | postgresql-90bcec36c18fa012e8b505094fc37fa314eebd79.tar.gz postgresql-90bcec36c18fa012e8b505094fc37fa314eebd79.zip |
To find uint32 on AIX.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/port/inet_aton.c | 4 |
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. |