Skip to content
Snippets Groups Projects
Commit cfbd2eaf authored by Mark Grondona's avatar Mark Grondona
Browse files

- include root level config.h if we have it

 - removed definitions of DEBUG_MODULE and DEBUG_SYSTEM,
   these have moved to either a Makefile or config.h
parent 7563a731
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,10 @@
* Author: Moe Jette, jette@llnl.gov
*/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
......@@ -21,9 +25,6 @@
#include "slurm.h"
#define DEBUG_MODULE 1
#define DEBUG_SYSTEM 1
int Get_CPUs(int *CPUs);
int Get_Mach_Name(char *Node_Name);
int Get_Memory(int *RealMemory);
......
......@@ -5,6 +5,11 @@
*
* Author: Moe Jette, jette@llnl.gov
*/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <dirent.h>
#include <errno.h>
#include <fcntl.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