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.69 2002/05/31 22:41:24 nilsson Exp $
+ * $Id: global.h,v 1.70 2002/06/25 14:26:40 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:380: 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 */
+ /* Compatibility... */
+ #define USE_PIKE_TYPE 2
#ifdef PIKE_RUN_UNLOCKED
#define DO_IF_RUN_UNLOCKED(X) X
#else
#define DO_IF_RUN_UNLOCKED(X)
#endif
/* Used in more than one place, better put it here */
#if defined(PROFILING) && defined(HAVE_GETHRTIME)
#define DO_IF_PROFILING(X) X
#else
#define DO_IF_PROFILING(X)
#endif
#endif