]>
Commit | Line | Data |
---|---|---|
2f8d396b PT |
1 | /* |
2 | * Copyright 2009 Extreme Engineering Solutions, Inc. | |
3 | * | |
a53002f4 | 4 | * SPDX-License-Identifier: LGPL-2.0+ |
2f8d396b PT |
5 | */ |
6 | ||
7 | #ifndef __OS_SUPPORT_H_ | |
8 | #define __OS_SUPPORT_H_ | |
9 | ||
37566090 MF |
10 | #include "compiler.h" |
11 | ||
2f8d396b PT |
12 | /* |
13 | * Include additional files required for supporting different operating systems | |
14 | */ | |
15 | #ifdef __MINGW32__ | |
16 | #include "mingw_support.h" | |
17 | #endif | |
18 | ||
6f261854 | 19 | #if defined(__APPLE__) && __DARWIN_C_LEVEL < 200809L |
64b15021 MF |
20 | #include "getline.h" |
21 | #endif | |
22 | ||
2f8d396b | 23 | #endif /* __OS_SUPPORT_H_ */ |