pike.git
/
src
/
global.h
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/global.h:84:
#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
;
+
static char *rcsid __attribute__ ((unused)) =X
#elif __GNUC__ == 2 #define RCSID(X) \ static char *rcsid = X; \ static void *use_rcsid=(&use_rcsid, (void *)&rcsid) #else #define RCSID(X) \
-
static char *rcsid = X
;
+
static char *rcsid = X
#endif #if defined(__GNUC__) && !defined(DEBUG) && !defined(lint) #define INLINE inline #else #define INLINE #endif #include "port.h"