#ifndef ___CONFIG_H___ #define ___CONFIG_H___ /* To enable detecting of BSD systems */ #if (defined(__unix__) || defined(unix)) && !defined(USG) #include #endif #include #include /* For BSD */ #if (defined(BSD) && (BSD >= 199103)) # include # include #else /* For linux */ # include /* for the value of SEMVMX */ #endif #ifndef MSG_NOSIGNAL #define MSG_NOSIGNAL 0 #endif #ifndef SEMVMX /* this value comes from linux/sem.h */ #define SEMVMX 32767 #endif #endif /* ___CONFIG_H___ */