cdefs.h
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:6k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. /*
  2.  * ++Copyright++ 1991, 1993
  3.  * -
  4.  * Copyright (c) 1991, 1993
  5.  *   The Regents of the University of California. All rights reserved.
  6.  *
  7.  * Redistribution and use in source and binary forms, with or without
  8.  * modification, are permitted provided that the following conditions
  9.  * are met:
  10.  * 1. Redistributions of source code must retain the above copyright
  11.  *   notice, this list of conditions and the following disclaimer.
  12.  * 2. Redistributions in binary form must reproduce the above copyright
  13.  *   notice, this list of conditions and the following disclaimer in the
  14.  *   documentation and/or other materials provided with the distribution.
  15.  * 3. All advertising materials mentioning features or use of this software
  16.  *   must display the following acknowledgement:
  17.  * This product includes software developed by the University of
  18.  * California, Berkeley and its contributors.
  19.  * 4. Neither the name of the University nor the names of its contributors
  20.  *   may be used to endorse or promote products derived from this software
  21.  *   without specific prior written permission.
  22.  *
  23.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  24.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  25.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  26.  * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  27.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  28.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  29.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  30.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  31.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  32.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  33.  * SUCH DAMAGE.
  34.  * -
  35.  * Portions Copyright (c) 1993 by Digital Equipment Corporation.
  36.  *
  37.  * Permission to use, copy, modify, and distribute this software for any
  38.  * purpose with or without fee is hereby granted, provided that the above
  39.  * copyright notice and this permission notice appear in all copies, and that
  40.  * the name of Digital Equipment Corporation not be used in advertising or
  41.  * publicity pertaining to distribution of the document or software without
  42.  * specific, written prior permission.
  43.  *
  44.  * THE SOFTWARE IS PROVIDED "AS IS" AND DIGITAL EQUIPMENT CORP. DISCLAIMS ALL
  45.  * WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES
  46.  * OF MERCHANTABILITY AND FITNESS.  IN NO EVENT SHALL DIGITAL EQUIPMENT
  47.  * CORPORATION BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  48.  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  49.  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
  50.  * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  51.  * SOFTWARE.
  52.  * -
  53.  * --Copyright
  54.  */
  55. /*
  56.  * @(#)cdefs.h 8.1 (Berkeley) 6/2/93
  57.  * $Id: cdefs.h,v 1.5 1999/02/13 23:21:58 momjian Exp $
  58.  */
  59. #ifndef _CDEFS_H_
  60. #define _CDEFS_H_
  61. #if defined(__cplusplus)
  62. #define __BEGIN_DECLS extern "C" {
  63. #define __END_DECLS };
  64. #else
  65. #define __BEGIN_DECLS
  66. #define __END_DECLS
  67. #endif
  68. /*
  69.  * The __CONCAT macro is used to concatenate parts of symbol names, e.g.
  70.  * with "#define OLD(foo) __CONCAT(old,foo)", OLD(foo) produces oldfoo.
  71.  * The __CONCAT macro is a bit tricky -- make sure you don't put spaces
  72.  * in between its arguments.  __CONCAT can also concatenate double-quoted
  73.  * strings produced by the __STRING macro, but this only works with ANSI C.
  74.  */
  75. #if defined(__STDC__) || defined(__cplusplus)
  76. /*
  77.  * Some headers in the Linux C library define __P the same as here,
  78.  * but with different argument variable name.  This causes a compiler
  79.  * warning!  So we avoid the redefinition.
  80.  */
  81. #if !defined(__P)
  82. #define __P(protos) protos /* full-blown ANSI C */
  83. #endif
  84. #define __CONCAT(x,y) x ## y
  85. #define __STRING(x) #x
  86. #define __const const /* define reserved names to standard */
  87. #define __signed signed
  88. #define __volatile volatile
  89. #if defined(__cplusplus)
  90. #define __inline inline /* convert to C++ keyword */
  91. #else
  92. #ifndef __GNUC__
  93. #define __inline /* delete GCC keyword */
  94. #endif  /* !__GNUC__ */
  95. #endif  /* !__cplusplus */
  96. #else /* !(__STDC__ || __cplusplus) */
  97. #define __P(protos) () /* traditional C preprocessor */
  98. #define __CONCAT(x,y) x/**/y
  99. #define __STRING(x) "x"
  100. #ifndef __GNUC__
  101. #define __const /* delete pseudo-ANSI C keywords */
  102. #define __inline
  103. #define __signed
  104. #define __volatile
  105. /*
  106.  * In non-ANSI C environments, new programs will want ANSI-only C keywords
  107.  * deleted from the program and old programs will want them left alone.
  108.  * When using a compiler other than gcc, programs using the ANSI C keywords
  109.  * const, inline etc. as normal identifiers should define -DNO_ANSI_KEYWORDS.
  110.  * When using "gcc -traditional", we assume that this is the intent; if
  111.  * __GNUC__ is defined but __STDC__ is not, we leave the new keywords alone.
  112.  */
  113. #ifndef NO_ANSI_KEYWORDS
  114. #define const /* delete ANSI C keywords */
  115. #define inline
  116. #define signed
  117. #define volatile
  118. #endif
  119. #endif  /* !__GNUC__ */
  120. #endif  /* !(__STDC__ || __cplusplus) */
  121. /*
  122.  * GCC1 and some versions of GCC2 declare dead (non-returning) and
  123.  * pure (no side effects) functions using "volatile" and "const";
  124.  * unfortunately, these then cause warnings under "-ansi -pedantic".
  125.  * GCC2 uses a new, peculiar __attribute__((attrs)) style. All of
  126.  * these work for GNU C++ (modulo a slight glitch in the C++ grammar
  127.  * in the distribution version of 2.5.5).
  128.  */
  129. #if !defined(__GNUC__) || __GNUC__ < 2 || __GNUC_MINOR__ < 5
  130. #define __attribute__(x) /* delete __attribute__ if non-gcc or gcc1 */
  131. #if defined(__GNUC__) && !defined(__STRICT_ANSI__)
  132. #define __dead __volatile
  133. #define __pure __const
  134. #endif
  135. #endif
  136. /* Delete pseudo-keywords wherever they are not available or needed. */
  137. #ifndef __dead
  138. #define __dead
  139. #define __pure
  140. #endif
  141. #endif  /* !_CDEFS_H_ */