Add cdefs-magic to add optional C11 bits to headers.

This commit is contained in:
Ed Schouten 2011-12-26 18:49:56 +00:00
parent 4ff79fdf3f
commit 489818ac07
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=228900

View File

@ -609,11 +609,16 @@
#define __XSI_VISIBLE 0
#define __BSD_VISIBLE 0
#define __ISO_C_VISIBLE 1999
#elif defined(_C11_SOURCE) /* Localism to specify strict C11 env. */
#define __POSIX_VISIBLE 0
#define __XSI_VISIBLE 0
#define __BSD_VISIBLE 0
#define __ISO_C_VISIBLE 2011
#else /* Default environment: show everything. */
#define __POSIX_VISIBLE 200809
#define __XSI_VISIBLE 700
#define __BSD_VISIBLE 1
#define __ISO_C_VISIBLE 1999
#define __ISO_C_VISIBLE 2011
#endif
#endif