platform.h 280 B

1234567891011121314
  1. #ifndef PLATFORM_H_
  2. #define PLATFORM_H_
  3. /* Ensure that we have a config file. */
  4. #if defined(CONFIG_H_FILE)
  5. #include CONFIG_H_FILE
  6. #elif defined(HAVE_CONFIG_H)
  7. #include "config.h"
  8. #else
  9. #error Need either CONFIG_H_FILE or HAVE_CONFIG_H defined.
  10. #endif
  11. #endif /* !PLATFORM_H_ */