diff options
Diffstat (limited to 'tools/os_support.c')
-rw-r--r-- | tools/os_support.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tools/os_support.c b/tools/os_support.c new file mode 100644 index 00000000000..6890c3183f6 --- /dev/null +++ b/tools/os_support.c @@ -0,0 +1,14 @@ +// SPDX-License-Identifier: GPL-2.0+ +/* + * Copyright 2009 Extreme Engineering Solutions, Inc. + */ + +#include "compiler.h" + +/* + * Include additional files required for supporting different operating systems + */ + +#if defined(__APPLE__) && __DARWIN_C_LEVEL < 200809L +#include "getline.c" +#endif |