source: svn/trunk/newcon3bcm2_21bu/toolchain/mipsel-linux-uclibc/include/sys/cdefs.h @ 2

Last change on this file since 2 was 2, checked in by phkim, 11 years ago

1.phkim

  1. revision copy newcon3sk r27
  • Property svn:executable set to *
File size: 10.1 KB
Line 
1/* Copyright (C) 1992-2001, 2002, 2004, 2005 Free Software Foundation, Inc.
2   This file is part of the GNU C Library.
3
4   The GNU C Library is free software; you can redistribute it and/or
5   modify it under the terms of the GNU Lesser General Public
6   License as published by the Free Software Foundation; either
7   version 2.1 of the License, or (at your option) any later version.
8
9   The GNU C Library is distributed in the hope that it will be useful,
10   but WITHOUT ANY WARRANTY; without even the implied warranty of
11   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12   Lesser General Public License for more details.
13
14   You should have received a copy of the GNU Lesser General Public
15   License along with the GNU C Library; if not, write to the Free
16   Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17   02111-1307 USA.  */
18
19#ifndef _SYS_CDEFS_H
20#define _SYS_CDEFS_H    1
21
22/* We are almost always included from features.h. */
23#ifndef _FEATURES_H
24# include <features.h>
25#endif
26
27/* The GNU libc does not support any K&R compilers or the traditional mode
28   of ISO C compilers anymore.  Check for some of the combinations not
29   anymore supported.  */
30#if defined __GNUC__ && !defined __STDC__
31# error "You need a ISO C conforming compiler to use the glibc headers"
32#endif
33
34/* Some user header file might have defined this before.  */
35#undef  __P
36#undef  __PMT
37
38#ifdef __GNUC__
39
40/* GCC can always grok prototypes.  For C++ programs we add throw()
41   to help it optimize the function calls.  But this works only with
42   gcc 2.8.x and egcs.  For gcc 3.2 and up we even mark C functions
43   as non-throwing using a function attribute since programs can use
44   the -fexceptions options for C code as well.  */
45# if 0 //!defined __cplusplus && __GNUC_PREREQ (3, 3)
46#  define __THROW       __attribute__ ((__nothrow__))
47#  define __NTH(fct)    __attribute__ ((__nothrow__)) fct
48# else
49#  if defined __cplusplus && __GNUC_PREREQ (2,8)
50#   define __THROW      throw ()
51#   define __NTH(fct)   fct throw ()
52#  else
53#   define __THROW
54#   define __NTH(fct)   fct
55#  endif
56# endif
57
58#else   /* Not GCC.  */
59
60# define __inline               /* No inline functions.  */
61
62# define __THROW
63# define __NTH(fct)     fct
64
65# define __const        const
66# define __signed       signed
67# define __volatile     volatile
68
69#endif  /* GCC.  */
70
71/* These two macros are not used in glibc anymore.  They are kept here
72   only because some other projects expect the macros to be defined.  */
73#define __P(args)       args
74#define __PMT(args)     args
75
76/* For these things, GCC behaves the ANSI way normally,
77   and the non-ANSI way under -traditional.  */
78
79#define __CONCAT(x,y)   x ## y
80#define __STRING(x)     #x
81
82/* This is not a typedef so `const __ptr_t' does the right thing.  */
83#define __ptr_t void *
84#define __long_double_t  long double
85
86
87/* C++ needs to know that types and declarations are C, not C++.  */
88#ifdef  __cplusplus
89# define __BEGIN_DECLS  extern "C" {
90# define __END_DECLS    }
91#else
92# define __BEGIN_DECLS
93# define __END_DECLS
94#endif
95
96
97/* The standard library needs the functions from the ISO C90 standard
98   in the std namespace.  At the same time we want to be safe for
99   future changes and we include the ISO C99 code in the non-standard
100   namespace __c99.  The C++ wrapper header take case of adding the
101   definitions to the global namespace.  */
102#if defined __cplusplus && defined _GLIBCPP_USE_NAMESPACES
103# define __BEGIN_NAMESPACE_STD  namespace std {
104# define __END_NAMESPACE_STD    }
105# define __USING_NAMESPACE_STD(name) using std::name;
106# define __BEGIN_NAMESPACE_C99  namespace __c99 {
107# define __END_NAMESPACE_C99    }
108# define __USING_NAMESPACE_C99(name) using __c99::name;
109#else
110/* For compatibility we do not add the declarations into any
111   namespace.  They will end up in the global namespace which is what
112   old code expects.  */
113# define __BEGIN_NAMESPACE_STD
114# define __END_NAMESPACE_STD
115# define __USING_NAMESPACE_STD(name)
116# define __BEGIN_NAMESPACE_C99
117# define __END_NAMESPACE_C99
118# define __USING_NAMESPACE_C99(name)
119#endif
120
121
122/* Support for bounded pointers.  */
123#ifndef __BOUNDED_POINTERS__
124# define __bounded      /* nothing */
125# define __unbounded    /* nothing */
126# define __ptrvalue     /* nothing */
127#endif
128
129
130/* Fortify support.  */
131#define __bos(ptr) __builtin_object_size (ptr, __USE_FORTIFY_LEVEL > 1)
132#define __bos0(ptr) __builtin_object_size (ptr, 0)
133#define __warndecl(name, msg) extern void name (void)
134
135
136/* Support for flexible arrays.  */
137#if __GNUC_PREREQ (2,97)
138/* GCC 2.97 supports C99 flexible array members.  */
139# define __flexarr      []
140#else
141# ifdef __GNUC__
142#  define __flexarr     [0]
143# else
144#  if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L
145#   define __flexarr    []
146#  else
147/* Some other non-C99 compiler.  Approximate with [1].  */
148#   define __flexarr    [1]
149#  endif
150# endif
151#endif
152
153
154/* __asm__ ("xyz") is used throughout the headers to rename functions
155   at the assembly language level.  This is wrapped by the __REDIRECT
156   macro, in order to support compilers that can do this some other
157   way.  When compilers don't support asm-names at all, we have to do
158   preprocessor tricks instead (which don't have exactly the right
159   semantics, but it's the best we can do).
160
161   Example:
162   int __REDIRECT(setpgrp, (__pid_t pid, __pid_t pgrp), setpgid); */
163
164#if defined __GNUC__ && __GNUC__ >= 2
165
166# define __REDIRECT(name, proto, alias) name proto __asm__ (__ASMNAME (#alias))
167# define __ASMNAME(cname) __C_SYMBOL_PREFIX__ cname
168/*
169# ifdef __cplusplus
170#  define __REDIRECT_NTH(name, proto, alias) \
171     name proto __THROW __asm__ (__ASMNAME (#alias))
172# else
173#  define __REDIRECT_NTH(name, proto, alias) \
174     name proto __asm__ (__ASMNAME (#alias)) __THROW
175# endif
176# define __ASMNAME(cname)  __ASMNAME2 (__USER_LABEL_PREFIX__, cname)
177# define __ASMNAME2(prefix, cname) __STRING (prefix) cname
178*/
179
180/*
181#elif __SOME_OTHER_COMPILER__
182
183# define __REDIRECT(name, proto, alias) name proto; \
184        _Pragma("let " #name " = " #alias)
185*/
186#endif
187
188/* GCC has various useful declarations that can be made with the
189   `__attribute__' syntax.  All of the ways we use this do fine if
190   they are omitted for compilers that don't understand it. */
191#if !defined __GNUC__ || __GNUC__ < 2
192# define __attribute__(xyz)     /* Ignore */
193#endif
194
195/* At some point during the gcc 2.96 development the `malloc' attribute
196   for functions was introduced.  We don't want to use it unconditionally
197   (although this would be possible) since it generates warnings.  */
198#if __GNUC_PREREQ (2,96)
199# define __attribute_malloc__ __attribute__ ((__malloc__))
200#else
201# define __attribute_malloc__ /* Ignore */
202#endif
203
204/* At some point during the gcc 2.96 development the `pure' attribute
205   for functions was introduced.  We don't want to use it unconditionally
206   (although this would be possible) since it generates warnings.  */
207#if __GNUC_PREREQ (2,96)
208# define __attribute_pure__ __attribute__ ((__pure__))
209#else
210# define __attribute_pure__ /* Ignore */
211#endif
212
213/* At some point during the gcc 3.1 development the `used' attribute
214   for functions was introduced.  We don't want to use it unconditionally
215   (although this would be possible) since it generates warnings.  */
216#if __GNUC_PREREQ (3,1)
217# define __attribute_used__ __attribute__ ((__used__))
218# define __attribute_noinline__ __attribute__ ((__noinline__))
219#else
220# define __attribute_used__ __attribute__ ((__unused__))
221# define __attribute_noinline__ /* Ignore */
222#endif
223
224/* gcc allows marking deprecated functions.  */
225#if __GNUC_PREREQ (3,2)
226# define __attribute_deprecated__ __attribute__ ((__deprecated__))
227#else
228# define __attribute_deprecated__ /* Ignore */
229#endif
230
231/* At some point during the gcc 2.8 development the `format_arg' attribute
232   for functions was introduced.  We don't want to use it unconditionally
233   (although this would be possible) since it generates warnings.
234   If several `format_arg' attributes are given for the same function, in
235   gcc-3.0 and older, all but the last one are ignored.  In newer gccs,
236   all designated arguments are considered.  */
237#if __GNUC_PREREQ (2,8)
238# define __attribute_format_arg__(x) __attribute__ ((__format_arg__ (x)))
239#else
240# define __attribute_format_arg__(x) /* Ignore */
241#endif
242
243/* At some point during the gcc 2.97 development the `strfmon' format
244   attribute for functions was introduced.  We don't want to use it
245   unconditionally (although this would be possible) since it
246   generates warnings.  */
247#if __GNUC_PREREQ (2,97)
248# define __attribute_format_strfmon__(a,b) \
249  __attribute__ ((__format__ (__strfmon__, a, b)))
250#else
251# define __attribute_format_strfmon__(a,b) /* Ignore */
252#endif
253
254/* The nonull function attribute allows to mark pointer parameters which
255   must not be NULL.  */
256#if __GNUC_PREREQ (3,3)
257# define __nonnull(params) __attribute__ ((__nonnull__ params))
258#else
259# define __nonnull(params)
260#endif
261
262/* If fortification mode, we warn about unused results of certain
263   function calls which can lead to problems.  */
264#if __GNUC_PREREQ (3,4)
265# define __attribute_warn_unused_result__ \
266   __attribute__ ((__warn_unused_result__))
267# if __USE_FORTIFY_LEVEL > 0
268#  define __wur __attribute_warn_unused_result__
269# endif
270#else
271# define __attribute_warn_unused_result__ /* empty */
272#endif
273#ifndef __wur
274# define __wur /* Ignore */
275#endif
276
277/* Forces a function to be always inlined.  */
278#if __GNUC_PREREQ (3,2)
279# define __always_inline __inline __attribute__ ((__always_inline__))
280#else
281# define __always_inline __inline
282#endif
283
284/* It is possible to compile containing GCC extensions even if GCC is
285   run in pedantic mode if the uses are carefully marked using the
286   `__extension__' keyword.  But this is not generally available before
287   version 2.8.  */
288#if !__GNUC_PREREQ (2,8)
289# define __extension__          /* Ignore */
290#endif
291
292/* __restrict is known in EGCS 1.2 and above. */
293#if !__GNUC_PREREQ (2,92)
294# define __restrict     /* Ignore */
295#endif
296
297/* ISO C99 also allows to declare arrays as non-overlapping.  The syntax is
298     array_name[restrict]
299   GCC 3.1 supports this.  */
300#if __GNUC_PREREQ (3,1) && !defined __GNUG__
301# define __restrict_arr __restrict
302#else
303# ifdef __GNUC__
304#  define __restrict_arr        /* Not supported in old GCC.  */
305# else
306#  if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L
307#   define __restrict_arr       restrict
308#  else
309/* Some other non-C99 compiler.  */
310#   define __restrict_arr       /* Not supported.  */
311#  endif
312# endif
313#endif
314
315#endif   /* sys/cdefs.h */
Note: See TracBrowser for help on using the repository browser.