From 90bcec36c18fa012e8b505094fc37fa314eebd79 Mon Sep 17 00:00:00 2001
From: Bruce Momjian <bruce@momjian.us>
Date: Sun, 14 Sep 1997 04:06:20 +0000
Subject: [PATCH] To find uint32 on AIX.

---
 src/backend/port/inet_aton.c | 4 ++++
 1 file changed, 4 insertions(+)

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.
-- 
GitLab