xref: /haiku/headers/compatibility/bsd/features.h (revision d123849688fadac4a8cebe5925c034fdfff971db)
1 /*
2  * Copyright 2019 Haiku, Inc. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef _FEATURES_H
6 #define _FEATURES_H
7 
8 
9 #if defined(_BSD_SOURCE) \
10 	|| (!defined(__STRICT_ANSI__) && !defined(_POSIX_C_SOURCE))
11 	#undef _DEFAULT_SOURCE
12 	#define _DEFAULT_SOURCE
13 #endif
14 
15 
16 #if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
17 	#undef _ISOC11_SOURCE
18 	#define _ISOC11_SOURCE
19 #endif
20 
21 
22 #endif // _FEATURES_H
23