Skip to content
Snippets Groups Projects
Commit 66077c24 authored by Moe Jette's avatar Moe Jette
Browse files

Fix #includes for clean AIX build.

parent b6e53a19
No related branches found
No related tags found
No related merge requests found
...@@ -28,13 +28,19 @@ ...@@ -28,13 +28,19 @@
# include "config.h" # include "config.h"
#endif #endif
#if HAVE_STDINT_H
# include <stdint.h>
#endif
#if HAVE_INTTYPES_H
# include <inttypes.h>
#endif
#include <fcntl.h> #include <fcntl.h>
#include <pthread.h> #include <pthread.h>
#include <pwd.h> #include <pwd.h>
#include <slurm/slurm.h> #include <slurm/slurm.h>
#include <slurm/slurm_errno.h> #include <slurm/slurm_errno.h>
#include <string.h> #include <string.h>
#include <stdint.h>
#include <sys/types.h> #include <sys/types.h>
#include <sys/stat.h> #include <sys/stat.h>
#include <unistd.h> #include <unistd.h>
......
...@@ -24,7 +24,17 @@ ...@@ -24,7 +24,17 @@
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
\*****************************************************************************/ \*****************************************************************************/
#include <stdint.h> #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 <stdio.h>
#include <slurm/slurm_errno.h> #include <slurm/slurm_errno.h>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment