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.

15 lines
218 B

  1. /*
  2. * Public domain
  3. * sys/wait.h compatibility shim
  4. */
  5. #include_next <sys/wait.h>
  6. #ifndef LIBCOMPAT_SYS_WAIT_H
  7. #define LIBCOMPAT_SYS_WAIT_H
  8. #ifndef WAIT_ANY
  9. #define WAIT_ANY (-1) /* Any process. */
  10. #endif
  11. #endif