pike.git
/
src
/
global.h
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/global.h:63:
#ifdef HAVE_STRING_H #include <string.h> #undef HAVE_STRING_H #endif #ifdef HAVE_MEMORY_H #include <memory.h> #undef HAVE_MEMORY_H #endif
+
#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7)
+
#define RCSID(X) \
+
static char *rcsid __attribute__ ((unused)) =X;
+
#elif
+
#define RCSID(X) \
+
static char *rcsid = X;
+
#endif
+
#if defined(__GNUC__) && !defined(DEBUG) && !defined(lint) #define INLINE inline #else #define INLINE #endif #include "port.h" #ifdef BUFSIZ