Blame view

tools/os_support.h 427 Bytes
83d290c56   Tom Rini   SPDX: Convert all...
1
  /* SPDX-License-Identifier: LGPL-2.0+ */
2f8d396b9   Peter Tyser   Add support for b...
2
3
  /*
   * Copyright 2009 Extreme Engineering Solutions, Inc.
2f8d396b9   Peter Tyser   Add support for b...
4
5
6
7
   */
  
  #ifndef __OS_SUPPORT_H_
  #define __OS_SUPPORT_H_
375660907   Mike Frysinger   compiler.h: unify...
8
  #include "compiler.h"
2f8d396b9   Peter Tyser   Add support for b...
9
10
11
12
13
14
  /*
   * Include additional files required for supporting different operating systems
   */
  #ifdef __MINGW32__
  #include "mingw_support.h"
  #endif
6f2618543   Andreas Bießmann   tools/os_support:...
15
  #if defined(__APPLE__) && __DARWIN_C_LEVEL < 200809L
64b150213   Mike Frysinger   getline: split ou...
16
17
  #include "getline.h"
  #endif
2f8d396b9   Peter Tyser   Add support for b...
18
  #endif /* __OS_SUPPORT_H_ */