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