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

/*
* Public domain
* sys/wait.h compatibility shim
*/
#include_next <sys/wait.h>
#ifndef LIBCOMPAT_SYS_WAIT_H
#define LIBCOMPAT_SYS_WAIT_H
#ifndef WAIT_ANY
#define WAIT_ANY (-1) /* Any process. */
#endif
#endif