os_support.h 374 B

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