os_support.h 427 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright 2009 Extreme Engineering Solutions, Inc.
  3. *
  4. * SPDX-License-Identifier: LGPL-2.0+
  5. */
  6. #ifndef __OS_SUPPORT_H_
  7. #define __OS_SUPPORT_H_
  8. #include "compiler.h"
  9. /*
  10. * Include additional files required for supporting different operating systems
  11. */
  12. #ifdef __MINGW32__
  13. #include "mingw_support.h"
  14. #endif
  15. #if defined(__APPLE__) && __DARWIN_C_LEVEL < 200809L
  16. #include "getline.h"
  17. #endif
  18. #endif /* __OS_SUPPORT_H_ */