sortix-mirror/libc/include/features.h

75 lines
2.2 KiB
C
Raw Normal View History

2012-09-28 22:36:46 +00:00
/*******************************************************************************
2011-08-05 12:25:00 +00:00
2012-09-28 22:36:46 +00:00
Copyright(C) Jonas 'Sortie' Termansen 2011.
2011-08-05 12:25:00 +00:00
2012-09-28 22:36:46 +00:00
This file is part of the Sortix C Library.
2011-08-05 12:25:00 +00:00
2012-09-28 22:36:46 +00:00
The Sortix C Library is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or (at your
option) any later version.
2011-08-05 12:25:00 +00:00
2012-09-28 22:36:46 +00:00
The Sortix C Library is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
License for more details.
2011-08-05 12:25:00 +00:00
You should have received a copy of the GNU Lesser General Public License
2012-09-28 22:36:46 +00:00
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
2011-08-05 12:25:00 +00:00
features.h
Various things for various systems, programs, compabillity, and whatnot.
2012-09-28 22:36:46 +00:00
*******************************************************************************/
2011-08-05 12:25:00 +00:00
#ifndef _FEATURES_H
#define _FEATURES_H 1
/* C++ needs to know that types and declarations are C, not C++. */
#ifdef __cplusplus
#define __BEGIN_DECLS extern "C" {
#define __END_DECLS }
#else
#define __BEGIN_DECLS
#define __END_DECLS
#endif
/* By default, assume the source is compiled using the native API. */
#if !defined(_SORTIX_SOURCE) && \
!defined(_POSIX_SOURCE) && !defined(_POSIX_C_SOURCE) && \
!defined(_BSD_SOURCE) && \
!defined(_SVID_SOURCE) && \
!defined(_XOPEN_SOURCE) && !defined(_XOPEN_SOURCE_EXTENDED) && \
!defined(_GNU_SOURCE) && \
1
#define _SORTIX_SOURCE 1
#endif
/* Whether to override some "standard" functions with Sortix alternatives. */
#if !defined(__SORTIX_STDLIB_REDIRECTS)
#if defined(_SORTIX_SOURCE)
#define __SORTIX_STDLIB_REDIRECTS 1
#else
#define __SORTIX_STDLIB_REDIRECTS 0
#endif
#endif
#define restrict
/* TODO: Improve these declarations, perhaps like they are in glibc. */
2011-08-05 12:25:00 +00:00
#define __POSIX_NO_OBSOLETE
#ifdef __POSIX_NO_OBSOLETE
#define __POSIX_OBSOLETE 999999L
#else
#define __POSIX_OBSOLETE 200112L
#endif
2011-11-24 09:26:36 +00:00
/* Don't provide things from standard headers that is not implemented. */
/*#define __SORTIX_SHOW_UNIMPLEMENTED*/
2011-08-05 12:25:00 +00:00
2011-11-24 09:26:36 +00:00
#include <sortix/bits.h>
2011-08-05 12:25:00 +00:00
#endif