From 4f5428d0ca4e6043378ed9ec71894fcac9883f5b Mon Sep 17 00:00:00 2001
From: Moe Jette <jette1@llnl.gov>
Date: Tue, 20 Jan 2004 20:41:40 +0000
Subject: [PATCH] Fix include of stdint.h or inttypes.h for AIX use.

---
 src/plugins/sched/prefix_courier.cpp | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/src/plugins/sched/prefix_courier.cpp b/src/plugins/sched/prefix_courier.cpp
index 90443c91bb9..b67d31936a6 100644
--- a/src/plugins/sched/prefix_courier.cpp
+++ b/src/plugins/sched/prefix_courier.cpp
@@ -24,9 +24,19 @@
  *  59 Temple Place, Suite 330, Boston, MA  02111-1307  USA.
 \*****************************************************************************/
 
+#ifdef HAVE_CONFIG_H
+#  include "config.h"
+#endif
+
+#if HAVE_STDINT_H
+#  include <stdint.h>
+#endif
+#if HAVE_INTTYPES_H
+#  include <inttypes.h>
+#endif
+
 #include <stdio.h>
 #include <stdlib.h>
-#include <stdint.h>
 
 extern "C" {
 # include "src/common/log.h"
-- 
GitLab