1 /* SPDX-License-Identifier: LGPL-2.0+ */
2 /*
3  * Copyright 2009 Extreme Engineering Solutions, Inc.
4  */
5 
6 #ifndef __OS_SUPPORT_H_
7 #define __OS_SUPPORT_H_
8 
9 #include "compiler.h"
10 
11 /*
12  * Include additional files required for supporting different operating systems
13  */
14 
15 #if defined(__APPLE__) && __DARWIN_C_LEVEL < 200809L
16 #include "getline.h"
17 #endif
18 
19 #endif /* __OS_SUPPORT_H_ */
20