pike.git
/
src
/
global.h
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/global.h:1:
/* || This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information.
-
|| $Id: global.h,v 1.
100
2004/
06
/
02
00
:
09
:
48
nilsson
Exp $
+
|| $Id: global.h,v 1.
101
2004/
09
/
18
20
:
17
:
36
per
Exp $
*/ #ifndef GLOBAL_H #define GLOBAL_H /* Mingw32 workarounds */ #if (defined(__WINNT__) || defined(__WIN32__)) && !defined(__NT__) #define __NT__ #endif
pike.git/src/global.h:355:
typedef struct p_wchar_p { p_wchar0 *ptr; int shift; } PCHARP; #ifndef CONFIGURE_TEST #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7) #define RCSID(X) \
-
static char
*
rcsid __attribute__ ((unused)) =X
+
static
const
char rcsid
[]
__attribute__ ((unused)) =X
#elif __GNUC__ == 2 #define RCSID(X) \
-
static char
*
rcsid = X; \
-
static void *use_rcsid=(&use_rcsid, (void *)&rcsid)
+
static
const
char rcsid
[]
= X; \
+
static
const
void *use_rcsid=(&use_rcsid, (void *)&rcsid)
#else #define RCSID(X) \
-
static char
*
rcsid = X
+
static
const
char rcsid
[]
= X
#endif #else #define RCSID(X) #endif #ifdef PIKE_DEBUG #define DO_IF_DEBUG(X) X #else #define DO_IF_DEBUG(X) #define NDEBUG