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.56 2000/12/23 07:33:49 hubbe Exp $
+ * $Id: global.h,v 1.57 2001/02/19 23:49:59 grubba Exp $
*/
#ifndef GLOBAL_H
#define GLOBAL_H
#if defined(__WINNT__) && !defined(__NT__)
#define __NT__
#endif
/* The worlds most stringent C compiler? */
#ifdef __TenDRA__
pike.git/src/global.h:401: Inside #if defined(USE_CRYPT_C)
#ifdef USE_CRYPT_C
char *crypt(char *, char *);
#endif /* USE_CRYPT_C */
/* If this define is present, error() has been renamed to Pike_error() and
* error.h has been renamed to pike_error.h
* Expect to see other similar defines in the future. -Hubbe
*/
#define Pike_error_present
+ /* This stuff is here to avoid circularities with
+ * svalue.h and pike_types.h
+ */
+ #ifndef USE_PIKE_TYPE
+ /*
+ * The old type type.
+ */
+ #define pike_type pike_string
+ #endif /* !USE_PIKE_TYPE */
+
#endif