os_support.c 291 B

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