pike.git
/
src
/
global.h
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/global.h:1:
/*\ ||| This file a part of Pike, and is copyright by Fredrik Hubinette ||| Pike is distributed as GPL (General Public License) ||| See the files COPYING and DISCLAIMER for more information. \*/ /*
-
* $Id: global.h,v 1.
28
1999/
03
/
02
03
:
13
:
14
hubbe Exp $
+
* $Id: global.h,v 1.
29
1999/
04
/
07
23
:
10
:
05
hubbe Exp $
*/ #ifndef GLOBAL_H #define GLOBAL_H #ifndef _LARGEFILE_SOURCE # define _FILE_OFFSET_BITS 64 # define _LARGEFILE_SOURCE # define _LARGEFILE64_SOURCE 1 #endif
pike.git/src/global.h:204:
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 #endif
+
#ifdef PIKE_DEBUG
+
#define DO_IF_DEBUG(X) X
+
#else
+
#define DO_IF_DEBUG(X)
+
#endif
+
#if defined(__GNUC__) && !defined(PIKE_DEBUG) && !defined(lint) #define INLINE inline #else #define INLINE #endif
-
+
#if defined(PURIFY) || defined(__CHECKER__) || defined(DEBUG_MALLOC)
+
#define DO_PIKE_CLEANUP
+
#endif
+
#include "port.h" #include "dmalloc.h" #ifdef BUFSIZ #define PROT_STDIO(x) PROT(x) #else #define PROT_STDIO(x) () #endif