]> git.ipfire.org Git - thirdparty/u-boot.git/blame - tools/os_support.h
ARM: zynq: fix environment command syntax
[thirdparty/u-boot.git] / tools / os_support.h
CommitLineData
83d290c5 1/* SPDX-License-Identifier: LGPL-2.0+ */
2f8d396b
PT
2/*
3 * Copyright 2009 Extreme Engineering Solutions, Inc.
2f8d396b
PT
4 */
5
6#ifndef __OS_SUPPORT_H_
7#define __OS_SUPPORT_H_
8
37566090
MF
9#include "compiler.h"
10
2f8d396b
PT
11/*
12 * Include additional files required for supporting different operating systems
13 */
14#ifdef __MINGW32__
15#include "mingw_support.h"
16#endif
17
6f261854 18#if defined(__APPLE__) && __DARWIN_C_LEVEL < 200809L
64b15021
MF
19#include "getline.h"
20#endif
21
2f8d396b 22#endif /* __OS_SUPPORT_H_ */