8c4b84f67d26cc242ead927a758e19314ce22d24 galt Mon Dec 30 21:38:38 2024 -0800 _REENTRANT is now set in common.h diff --git src/parasol/inc/paraCommon.h src/parasol/inc/paraCommon.h index 46a208a..f72d1de 100644 --- src/parasol/inc/paraCommon.h +++ src/parasol/inc/paraCommon.h @@ -1,25 +1,24 @@ /* This just defines _REENTRANT in front of everything * and includes a bunch more system includes than the * usual common.h. The REENTRANT is for thread safety. * The other stuff is mostly internet stuff. */ #ifndef PARACOMMON_H #define PARACOMMON_H -#define _REENTRANT #include <sys/types.h> #include <pwd.h> #include <signal.h> #include <sys/time.h> #include <sys/times.h> #include <sys/stat.h> #include <sys/wait.h> #include <sys/socket.h> #include <net/if.h> #include <netinet/in.h> #include <arpa/inet.h> #include <netdb.h> #include "common.h" #include "paraVersion.h" #endif /* PARACOMMON_H */