Blame view

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