
#ifndef _SYS_WAIT_H_
#define _SYS_WAIT_H_

#define WNOHANG		1	/* dont hang in wait */
#define WUNTRACED	2	/* tell about stopped, untraced children */

pid_t wait 					__P((int *));
pid_t waitpid 				__P((pid_t, int *, int));

#endif /* _SYS_WAIT_H_ */
