xref: /haiku/headers/compatibility/bsd/features.h (revision a72f3582be00f2151800fa7da036d7adc14e3272)
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 	#define _DEFAULT_SOURCE
12 #endif
13 
14 
15 #endif // _FEATURES_H
16