os_support.c 342 B

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