Portable build framework for OpenNTPD
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
199 B

  1. /*
  2. * paths.h compatibility shim
  3. */
  4. #ifdef HAVE_PATHS_H
  5. #include_next <paths.h>
  6. #else
  7. #ifndef LIBCOMPAT_PATHS_H
  8. #define LIBCOMPAT_PATHS_H
  9. #define _PATH_DEVNULL "/dev/null"
  10. #endif
  11. #endif