epoc32/include/stdapis/sys/cdefs.h
author William Roberts <williamr@symbian.org>
Wed, 31 Mar 2010 12:27:01 +0100
branchSymbian2
changeset 3 e1b950c65cb4
parent 0 061f57f2323e
child 4 837f303aceeb
permissions -rw-r--r--
Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
     1 /*-
     2  * © Portions copyright (c) 2005 Nokia Corporation.  All rights reserved. 
     3  * Copyright (c) 1991, 1993
     4  *	The Regents of the University of California.  All rights reserved.
     5  *
     6  * This code is derived from software contributed to Berkeley by
     7  * Berkeley Software Design, Inc.
     8  *
     9  * Redistribution and use in source and binary forms, with or without
    10  * modification, are permitted provided that the following conditions
    11  * are met:
    12  * 1. Redistributions of source code must retain the above copyright
    13  *    notice, this list of conditions and the following disclaimer.
    14  * 2. Redistributions in binary form must reproduce the above copyright
    15  *    notice, this list of conditions and the following disclaimer in the
    16  *    documentation and/or other materials provided with the distribution.
    17  * 4. Neither the name of the University nor the names of its contributors
    18  *    may be used to endorse or promote products derived from this software
    19  *    without specific prior written permission.
    20  *
    21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
    22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
    25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
    26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
    27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
    28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
    29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
    30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
    31  * SUCH DAMAGE.
    32 * © Portions copyright (c) 2007-2008 Symbian Software Ltd. All rights reserved.
    33  *	@(#)cdefs.h	8.8 (Berkeley) 1/9/95
    34  * $FreeBSD: src/sys/sys/cdefs.h,v 1.88.2.1 2005/10/09 07:48:48 netchild Exp $
    35  */
    36 
    37 #ifndef	_SYS_CDEFS_H_
    38 #define	_SYS_CDEFS_H_
    39 
    40 #ifdef __SYMBIAN32__
    41 #include <_ansi.h>
    42 #endif
    43 
    44 #if defined(__cplusplus)
    45 #define	__BEGIN_DECLS	extern "C" {
    46 #define	__END_DECLS	}
    47 #else
    48 #define	__BEGIN_DECLS
    49 #define	__END_DECLS
    50 #endif
    51 
    52 /*
    53  * This code has been put in place to help reduce the addition of
    54  * compiler specific defines in FreeBSD code.  It helps to aid in
    55  * having a compiler-agnostic source tree.
    56  */
    57 
    58 #if defined(__GNUC__) || defined(__INTEL_COMPILER)
    59 
    60 #if __GNUC__ >= 3 || defined(__INTEL_COMPILER)
    61 #define __GNUCLIKE_ASM 3
    62 #define __GNUCLIKE_MATH_BUILTIN_CONSTANTS
    63 #else
    64 #define __GNUCLIKE_ASM 2
    65 #endif
    66 #define __GNUCLIKE___TYPEOF 1
    67 #define __GNUCLIKE___OFFSETOF 1
    68 #define __GNUCLIKE___SECTION 1
    69 
    70 #define __GNUCLIKE_ATTRIBUTE_MODE_DI 1
    71 
    72 #ifndef __INTEL_COMPILER
    73 # define __GNUCLIKE_CTOR_SECTION_HANDLING 1
    74 #endif
    75 
    76 #define __GNUCLIKE_BUILTIN_CONSTANT_P 1
    77 # if defined(__INTEL_COMPILER) && defined(__cplusplus) \
    78     && __INTEL_COMPILER < 800
    79 #  undef __GNUCLIKE_BUILTIN_CONSTANT_P
    80 # endif
    81 
    82 #if (__GNUC_MINOR__ > 95 || __GNUC__ >= 3) && !defined(__INTEL_COMPILER)
    83 # define __GNUCLIKE_BUILTIN_VARARGS 1
    84 # define __GNUCLIKE_BUILTIN_STDARG 1
    85 # define __GNUCLIKE_BUILTIN_VAALIST 1
    86 #endif
    87 
    88 #if defined(__GNUC__)
    89 # define __GNUC_VA_LIST_COMPATIBILITY 1
    90 #endif
    91 
    92 #ifndef __INTEL_COMPILER
    93 # define __GNUCLIKE_BUILTIN_NEXT_ARG 1
    94 # define __GNUCLIKE_MATH_BUILTIN_RELOPS
    95 #endif
    96 
    97 #define __GNUCLIKE_BUILTIN_MEMCPY 1
    98 
    99 /* XXX: if __GNUC__ >= 2: not tested everywhere originally, where replaced */
   100 #define __CC_SUPPORTS_INLINE 1
   101 #define __CC_SUPPORTS___INLINE 1
   102 #define __CC_SUPPORTS___INLINE__ 1
   103 
   104 #define __CC_SUPPORTS___FUNC__ 1
   105 #define __CC_SUPPORTS_WARNING 1
   106 
   107 #define __CC_SUPPORTS_VARADIC_XXX 1 /* see varargs.h */
   108 
   109 #define __CC_SUPPORTS_DYNAMIC_ARRAY_INIT 1
   110 
   111 /* XXX: sys/dev/mpt/mpilib/mpi_type.h uses it, someone should review it */
   112 #define __CC_INT_IS_32BIT 1
   113 
   114 #endif /* __GNUC__ || __INTEL_COMPILER */
   115 
   116 /*
   117  * Macro to test if we're using a specific version of gcc or later.
   118  */
   119 #if defined(__GNUC__) && !defined(__INTEL_COMPILER)
   120 #define	__GNUC_PREREQ__(ma, mi)	\
   121 	(__GNUC__ > (ma) || __GNUC__ == (ma) && __GNUC_MINOR__ >= (mi))
   122 #else
   123 #define	__GNUC_PREREQ__(ma, mi)	0
   124 #endif
   125 
   126 /*
   127  * The __CONCAT macro is used to concatenate parts of symbol names, e.g.
   128  * with "#define OLD(foo) __CONCAT(old,foo)", OLD(foo) produces oldfoo.
   129  * The __CONCAT macro is a bit tricky to use if it must work in non-ANSI
   130  * mode -- there must be no spaces between its arguments, and for nested
   131  * __CONCAT's, all the __CONCAT's must be at the left.  __CONCAT can also
   132  * concatenate double-quoted strings produced by the __STRING macro, but
   133  * this only works with ANSI C.
   134  *
   135  * __XSTRING is like __STRING, but it expands any macros in its argument
   136  * first.  It is only available with ANSI C.
   137  */
   138 #if defined(__STDC__) || defined(__cplusplus)
   139 #define	__P(protos)	protos		/* full-blown ANSI C */
   140 #define	__CONCAT1(x,y)	x ## y
   141 #define	__CONCAT(x,y)	__CONCAT1(x,y)
   142 #define	__STRING(x)	#x		/* stringify without expanding x */
   143 #define	__XSTRING(x)	__STRING(x)	/* expand x, then stringify */
   144 
   145 #define	__const		const		/* define reserved names to standard */
   146 #define	__signed	signed
   147 #define	__volatile	volatile
   148 #if defined(__cplusplus)
   149 #define	__inline	inline		/* convert to C++ keyword */
   150 #else
   151 #if !(defined(__CC_SUPPORTS___INLINE))
   152 #define	__inline			/* delete GCC keyword */
   153 #endif /* ! __CC_SUPPORTS___INLINE */
   154 #endif /* !__cplusplus */
   155 
   156 #else	/* !(__STDC__ || __cplusplus) */
   157 #define	__P(protos)	()		/* traditional C preprocessor */
   158 #define	__CONCAT(x,y)	x/**/y
   159 #define	__STRING(x)	"x"
   160 
   161 #if !defined(__CC_SUPPORTS___INLINE)
   162 #define	__const				/* delete pseudo-ANSI C keywords */
   163 #define	__inline
   164 #define	__signed
   165 #define	__volatile
   166 /*
   167  * In non-ANSI C environments, new programs will want ANSI-only C keywords
   168  * deleted from the program and old programs will want them left alone.
   169  * When using a compiler other than gcc, programs using the ANSI C keywords
   170  * const, inline etc. as normal identifiers should define -DNO_ANSI_KEYWORDS.
   171  * When using "gcc -traditional", we assume that this is the intent; if
   172  * __GNUC__ is defined but __STDC__ is not, we leave the new keywords alone.
   173  */
   174 #ifndef	NO_ANSI_KEYWORDS
   175 #define	const				/* delete ANSI C keywords */
   176 #define	inline
   177 #define	signed
   178 #define	volatile
   179 #endif	/* !NO_ANSI_KEYWORDS */
   180 #endif	/* !__CC_SUPPORTS___INLINE */
   181 #endif	/* !(__STDC__ || __cplusplus) */
   182 
   183 /*
   184  * Compiler-dependent macros to help declare dead (non-returning) and
   185  * pure (no side effects) functions, and unused variables.  They are
   186  * null except for versions of gcc that are known to support the features
   187  * properly (old versions of gcc-2 supported the dead and pure features
   188  * in a different (wrong) way).  If we do not provide an implementation
   189  * for a given compiler, let the compile fail if it is told to use
   190  * a feature that we cannot live without.
   191  */
   192 #ifdef lint
   193 #define	__dead2
   194 #define	__pure2
   195 #define	__unused
   196 #define	__packed
   197 #define	__aligned(x)
   198 #define	__section(x)
   199 #else
   200 #if !__GNUC_PREREQ__(2, 5) && !defined(__INTEL_COMPILER)
   201 #define	__dead2
   202 #define	__pure2
   203 #define	__unused
   204 #endif
   205 #if __GNUC__ == 2 && __GNUC_MINOR__ >= 5 && __GNUC_MINOR__ < 7 && !defined(__INTEL_COMPILER)
   206 #define	__dead2		__attribute__((__noreturn__))
   207 #define	__pure2		__attribute__((__const__))
   208 #define	__unused
   209 /* XXX Find out what to do for __packed, __aligned and __section */
   210 #endif
   211 #if __GNUC_PREREQ__(2, 7)
   212 #define	__dead2		__attribute__((__noreturn__))
   213 #define	__pure2		__attribute__((__const__))
   214 #define	__unused	__attribute__((__unused__))
   215 #define	__used		__attribute__((__used__))
   216 #define	__packed	__attribute__((__packed__))
   217 #define	__aligned(x)	__attribute__((__aligned__(x)))
   218 #define	__section(x)	__attribute__((__section__(x)))
   219 #endif
   220 #if defined(__INTEL_COMPILER)
   221 #define __dead2		__attribute__((__noreturn__))
   222 #define __pure2		__attribute__((__const__))
   223 #define __unused	__attribute__((__unused__))
   224 #define __used		__attribute__((__used__))
   225 #define __packed	__attribute__((__packed__))
   226 #define __aligned(x)	__attribute__((__aligned__(x)))
   227 #define __section(x)	__attribute__((__section__(x)))
   228 #endif
   229 #endif
   230 
   231 #if __GNUC_PREREQ__(2, 96)
   232 #define	__pure		__attribute__((__pure__))
   233 #else
   234 #define	__pure
   235 #endif
   236 
   237 #if __GNUC_PREREQ__(3, 1) || (defined(__INTEL_COMPILER) && __INTEL_COMPILER >= 800)
   238 #define	__always_inline	__attribute__((__always_inline__))
   239 #else
   240 #define	__always_inline
   241 #endif
   242 
   243 #if __GNUC_PREREQ__(3, 3)
   244 #define __nonnull(x)	__attribute__((__nonnull__(x)))
   245 #else
   246 #define __nonnull(x)
   247 #endif
   248 
   249 /* XXX: should use `#if __STDC_VERSION__ < 199901'. */
   250 #if !__GNUC_PREREQ__(2, 7) && !defined(__INTEL_COMPILER)
   251 #define	__func__	NULL
   252 #endif
   253 
   254 #if (defined(__INTEL_COMPILER) || (defined(__GNUC__) && __GNUC__ >= 2)) && !defined(__STRICT_ANSI__) || __STDC_VERSION__ >= 199901
   255 #ifdef __SYMBIAN32__
   256 #ifndef __LONG_LONG_SUPPORTED
   257 #define	__LONG_LONG_SUPPORTED
   258 #endif /* __LONG_LONG_SUPPORTED */
   259 #else
   260 #define	__LONG_LONG_SUPPORTED
   261 #endif /* __SYMBIAN32__ */
   262 #endif
   263 
   264 #ifdef __SYMBIAN32__
   265 #if ((defined(__ARMCC__) && (__ARMCC_VERSION > 220000) ) || (defined(__WINSCW__)))
   266 #ifndef __LONG_LONG_SUPPORTED
   267 #define __LONG_LONG_SUPPORTED
   268 #endif /* __LONG_LONG_SUPPORTED */
   269 #endif
   270 #endif /*__SYMBIAN32__*/
   271 
   272 
   273 /*
   274  * GCC 2.95 provides `__restrict' as an extension to C90 to support the
   275  * C99-specific `restrict' type qualifier.  We happen to use `__restrict' as
   276  * a way to define the `restrict' type qualifier without disturbing older
   277  * software that is unaware of C99 keywords.
   278  */
   279 #if !(__GNUC__ == 2 && __GNUC_MINOR__ == 95)
   280 #if !defined(__STDC_VERSION__) || __STDC_VERSION__ < 199901
   281 #define	__restrict
   282 #else
   283 #define	__restrict	restrict
   284 #endif
   285 #endif
   286 
   287 /*
   288  * GNU C version 2.96 adds explicit branch prediction so that
   289  * the CPU back-end can hint the processor and also so that
   290  * code blocks can be reordered such that the predicted path
   291  * sees a more linear flow, thus improving cache behavior, etc.
   292  *
   293  * The following two macros provide us with a way to utilize this
   294  * compiler feature.  Use __predict_true() if you expect the expression
   295  * to evaluate to true, and __predict_false() if you expect the
   296  * expression to evaluate to false.
   297  *
   298  * A few notes about usage:
   299  *
   300  *	* Generally, __predict_false() error condition checks (unless
   301  *	  you have some _strong_ reason to do otherwise, in which case
   302  *	  document it), and/or __predict_true() `no-error' condition
   303  *	  checks, assuming you want to optimize for the no-error case.
   304  *
   305  *	* Other than that, if you don't know the likelihood of a test
   306  *	  succeeding from empirical or other `hard' evidence, don't
   307  *	  make predictions.
   308  *
   309  *	* These are meant to be used in places that are run `a lot'.
   310  *	  It is wasteful to make predictions in code that is run
   311  *	  seldomly (e.g. at subsystem initialization time) as the
   312  *	  basic block reordering that this affects can often generate
   313  *	  larger code.
   314  */
   315 #if __GNUC_PREREQ__(2, 96)
   316 #define __predict_true(exp)     __builtin_expect((exp), 1)
   317 #define __predict_false(exp)    __builtin_expect((exp), 0)
   318 #else
   319 #define __predict_true(exp)     (exp)
   320 #define __predict_false(exp)    (exp)
   321 #endif
   322 
   323 /*
   324  * We define this here since <stddef.h>, <sys/queue.h>, and <sys/types.h>
   325  * require it.
   326  */
   327 
   328 #if !defined(__cplusplus) || defined(__SYMBIAN32__)
   329 #define	__offsetof(type, field)	((size_t)(&((type *)0)->field))
   330 #else
   331 #define __offsetof(type, field)					\
   332   (__offsetof__ (reinterpret_cast <size_t>			\
   333                  (&reinterpret_cast <const volatile char &>	\
   334                   (static_cast<type *> (0)->field))))
   335 #endif
   336 #define	__rangeof(type, start, end) \
   337 	(__offsetof(type, end) - __offsetof(type, start))
   338 
   339 /*
   340  * Compiler-dependent macros to declare that functions take printf-like
   341  * or scanf-like arguments.  They are null except for versions of gcc
   342  * that are known to support the features properly (old versions of gcc-2
   343  * didn't permit keeping the keywords out of the application namespace).
   344  */
   345 #if !__GNUC_PREREQ__(2, 7) && !defined(__INTEL_COMPILER)
   346 #define	__printflike(fmtarg, firstvararg)
   347 #define	__scanflike(fmtarg, firstvararg)
   348 #else
   349 #define	__printflike(fmtarg, firstvararg) \
   350 	    __attribute__((__format__ (__printf__, fmtarg, firstvararg)))
   351 #define	__scanflike(fmtarg, firstvararg) \
   352 	    __attribute__((__format__ (__scanf__, fmtarg, firstvararg)))
   353 #endif
   354 
   355 /* Compiler-dependent macros that rely on FreeBSD-specific extensions. */
   356 #if __FreeBSD_cc_version >= 300001 && defined(__GNUC__) && !defined(__INTEL_COMPILER)
   357 #define	__printf0like(fmtarg, firstvararg) \
   358 	    __attribute__((__format__ (__printf0__, fmtarg, firstvararg)))
   359 #else
   360 #define	__printf0like(fmtarg, firstvararg)
   361 #endif
   362 
   363 #if defined(__GNUC__) || defined(__INTEL_COMPILER)
   364 #ifndef __INTEL_COMPILER
   365 #define	__strong_reference(sym,aliassym)	\
   366 	extern __typeof (sym) aliassym __attribute__ ((__alias__ (#sym)));
   367 #endif
   368 #ifdef __STDC__
   369 #define	__weak_reference(sym,alias)	\
   370 	__asm__(".weak " #alias);	\
   371 	__asm__(".equ "  #alias ", " #sym)
   372 #define	__warn_references(sym,msg)	\
   373 	__asm__(".section .gnu.warning." #sym);	\
   374 	__asm__(".asciz \"" msg "\"");	\
   375 	__asm__(".previous")
   376 #else
   377 #define	__weak_reference(sym,alias)	\
   378 	__asm__(".weak alias");		\
   379 	__asm__(".equ alias, sym")
   380 #define	__warn_references(sym,msg)	\
   381 	__asm__(".section .gnu.warning.sym"); \
   382 	__asm__(".asciz \"msg\"");	\
   383 	__asm__(".previous")
   384 #endif	/* __STDC__ */
   385 #endif	/* __GNUC__ || __INTEL_COMPILER */
   386 
   387 #if defined(__GNUC__) || defined(__INTEL_COMPILER)
   388 #define	__IDSTRING(name,string)	__asm__(".ident\t\"" string "\"")
   389 #else
   390 /*
   391  * The following definition might not work well if used in header files,
   392  * but it should be better than nothing.  If you want a "do nothing"
   393  * version, then it should generate some harmless declaration, such as:
   394  *    #define __IDSTRING(name,string)	struct __hack
   395  */
   396 #define	__IDSTRING(name,string)	static const char name[] __unused = string
   397 #endif
   398 
   399 /*
   400  * Embed the rcs id of a source file in the resulting library.  Note that in
   401  * more recent ELF binutils, we use .ident allowing the ID to be stripped.
   402  * Usage:
   403  *	__FBSDID("$FreeBSD: src/sys/sys/cdefs.h,v 1.88.2.1 2005/10/09 07:48:48 netchild Exp $");
   404  */
   405 #ifndef	__FBSDID
   406 #if !defined(lint) && !defined(STRIP_FBSDID)
   407 #define	__FBSDID(s)	__IDSTRING(__CONCAT(__rcsid_,__LINE__),s)
   408 #else
   409 #define	__FBSDID(s)	struct __hack
   410 #endif
   411 #endif
   412 
   413 #ifndef	__RCSID
   414 #ifndef	NO__RCSID
   415 #define	__RCSID(s)	__IDSTRING(__CONCAT(__rcsid_,__LINE__),s)
   416 #else
   417 #define	__RCSID(s)	struct __hack
   418 #endif
   419 #endif
   420 
   421 #ifndef	__RCSID_SOURCE
   422 #ifndef	NO__RCSID_SOURCE
   423 #define	__RCSID_SOURCE(s)	__IDSTRING(__CONCAT(__rcsid_source_,__LINE__),s)
   424 #else
   425 #define	__RCSID_SOURCE(s)	struct __hack
   426 #endif
   427 #endif
   428 
   429 #ifndef	__SCCSID
   430 #ifndef	NO__SCCSID
   431 #define	__SCCSID(s)	__IDSTRING(__CONCAT(__sccsid_,__LINE__),s)
   432 #else
   433 #define	__SCCSID(s)	struct __hack
   434 #endif
   435 #endif
   436 
   437 #ifndef	__COPYRIGHT
   438 #ifndef	NO__COPYRIGHT
   439 #define	__COPYRIGHT(s)	__IDSTRING(__CONCAT(__copyright_,__LINE__),s)
   440 #else
   441 #define	__COPYRIGHT(s)	struct __hack
   442 #endif
   443 #endif
   444 
   445 #ifndef	__DECONST
   446 #define	__DECONST(type, var)	((type)(uintptr_t)(const void *)(var))
   447 #endif
   448 
   449 #ifndef	__DEVOLATILE
   450 #define	__DEVOLATILE(type, var)	((type)(uintptr_t)(volatile void *)(var))
   451 #endif
   452 
   453 #ifndef	__DEQUALIFY
   454 #define	__DEQUALIFY(type, var)	((type)(uintptr_t)(const volatile void *)(var))
   455 #endif
   456 
   457 /*-
   458  * The following definitions are an extension of the behavior originally
   459  * implemented in <sys/_posix.h>, but with a different level of granularity.
   460  * POSIX.1 requires that the macros we test be defined before any standard
   461  * header file is included.
   462  *
   463  * Here's a quick run-down of the versions:
   464  *  defined(_POSIX_SOURCE)		1003.1-1988
   465  *  _POSIX_C_SOURCE == 1		1003.1-1990
   466  *  _POSIX_C_SOURCE == 2		1003.2-1992 C Language Binding Option
   467  *  _POSIX_C_SOURCE == 199309		1003.1b-1993
   468  *  _POSIX_C_SOURCE == 199506		1003.1c-1995, 1003.1i-1995,
   469  *					and the omnibus ISO/IEC 9945-1: 1996
   470  *  _POSIX_C_SOURCE == 200112		1003.1-2001
   471  *
   472  * In addition, the X/Open Portability Guide, which is now the Single UNIX
   473  * Specification, defines a feature-test macro which indicates the version of
   474  * that specification, and which subsumes _POSIX_C_SOURCE.
   475  *
   476  * Our macros begin with two underscores to avoid namespace screwage.
   477  */
   478 
   479 /* Deal with IEEE Std. 1003.1-1990, in which _POSIX_C_SOURCE == 1. */
   480 #if defined(_POSIX_C_SOURCE) && _POSIX_C_SOURCE == 1
   481 #undef _POSIX_C_SOURCE		/* Probably illegal, but beyond caring now. */
   482 #define	_POSIX_C_SOURCE		199009
   483 #endif
   484 
   485 /* Deal with IEEE Std. 1003.2-1992, in which _POSIX_C_SOURCE == 2. */
   486 #if defined(_POSIX_C_SOURCE) && _POSIX_C_SOURCE == 2
   487 #undef _POSIX_C_SOURCE
   488 #define	_POSIX_C_SOURCE		199209
   489 #endif
   490 
   491 /* Deal with various X/Open Portability Guides and Single UNIX Spec. */
   492 #ifdef _XOPEN_SOURCE
   493 #if _XOPEN_SOURCE - 0 >= 600
   494 #define	__XSI_VISIBLE		600
   495 #undef _POSIX_C_SOURCE
   496 #define	_POSIX_C_SOURCE		200112
   497 #elif _XOPEN_SOURCE - 0 >= 500
   498 #define	__XSI_VISIBLE		500
   499 #undef _POSIX_C_SOURCE
   500 #define	_POSIX_C_SOURCE		199506
   501 #endif
   502 #endif
   503 
   504 /*
   505  * Deal with all versions of POSIX.  The ordering relative to the tests above is
   506  * important.
   507  */
   508 #if defined(_POSIX_SOURCE) && !defined(_POSIX_C_SOURCE)
   509 #define	_POSIX_C_SOURCE		198808
   510 #endif
   511 #ifdef _POSIX_C_SOURCE
   512 #if _POSIX_C_SOURCE >= 200112
   513 #ifdef __SYMBIAN32__
   514 #define	__XSI_VISIBLE		600
   515 #define	__BSD_VISIBLE		1
   516 #endif //__SYMBIAN32__
   517 #define	__POSIX_VISIBLE		200112
   518 #define	__ISO_C_VISIBLE		1999
   519 #elif _POSIX_C_SOURCE >= 199506
   520 #define	__POSIX_VISIBLE		199506
   521 #define	__ISO_C_VISIBLE		1990
   522 #elif _POSIX_C_SOURCE >= 199309
   523 #define	__POSIX_VISIBLE		199309
   524 #define	__ISO_C_VISIBLE		1990
   525 #elif _POSIX_C_SOURCE >= 199209
   526 #define	__POSIX_VISIBLE		199209
   527 #define	__ISO_C_VISIBLE		1990
   528 #elif _POSIX_C_SOURCE >= 199009
   529 #define	__POSIX_VISIBLE		199009
   530 #define	__ISO_C_VISIBLE		1990
   531 #else
   532 #define	__POSIX_VISIBLE		198808
   533 #define	__ISO_C_VISIBLE		0
   534 #endif /* _POSIX_C_SOURCE */
   535 #else
   536 /*-
   537  * Deal with _ANSI_SOURCE:
   538  * If it is defined, and no other compilation environment is explicitly
   539  * requested, then define our internal feature-test macros to zero.  This
   540  * makes no difference to the preprocessor (undefined symbols in preprocessing
   541  * expressions are defined to have value zero), but makes it more convenient for
   542  * a test program to print out the values.
   543  *
   544  * If a program mistakenly defines _ANSI_SOURCE and some other macro such as
   545  * _POSIX_C_SOURCE, we will assume that it wants the broader compilation
   546  * environment (and in fact we will never get here).
   547  */
   548 #if defined(_ANSI_SOURCE)	/* Hide almost everything. */
   549 #define	__POSIX_VISIBLE		0
   550 #define	__XSI_VISIBLE		0
   551 #define	__BSD_VISIBLE		0
   552 #define	__ISO_C_VISIBLE		1990
   553 #elif defined(_C99_SOURCE)	/* Localism to specify strict C99 env. */
   554 #define	__POSIX_VISIBLE		0
   555 #define	__XSI_VISIBLE		0
   556 #define	__BSD_VISIBLE		0
   557 #define	__ISO_C_VISIBLE		1999
   558 #else				/* Default environment: show everything. */
   559 #define	__POSIX_VISIBLE		200112
   560 #define	__XSI_VISIBLE		600
   561 #define	__BSD_VISIBLE		1
   562 #define	__ISO_C_VISIBLE		1999
   563 #endif
   564 #endif
   565 
   566 #endif /* !_SYS_CDEFS_H_ */