b.liu | e958203 | 2025-04-17 19:18:16 +0800 | [diff] [blame^] | 1 | /* |
2 | * Copyright 2009 Extreme Engineering Solutions, Inc. | ||||
3 | * | ||||
4 | * SPDX-License-Identifier: LGPL-2.0+ | ||||
5 | */ | ||||
6 | |||||
7 | #ifndef __OS_SUPPORT_H_ | ||||
8 | #define __OS_SUPPORT_H_ | ||||
9 | |||||
10 | #include "compiler.h" | ||||
11 | |||||
12 | /* | ||||
13 | * Include additional files required for supporting different operating systems | ||||
14 | */ | ||||
15 | #ifdef __MINGW32__ | ||||
16 | #include "mingw_support.h" | ||||
17 | #endif | ||||
18 | |||||
19 | #if defined(__APPLE__) && __DARWIN_C_LEVEL < 200809L | ||||
20 | #include "getline.h" | ||||
21 | #endif | ||||
22 | |||||
23 | #endif /* __OS_SUPPORT_H_ */ |