mirror of
https://git.planet-casio.com/Vhex-Kernel-Core/fxlibc.git
synced 2025-01-01 06:23:37 +01:00
9 lines
307 B
C
9 lines
307 B
C
#ifndef __LIB_BITS_WAITFLAGS_H__
|
|
# define __LIB_BITS_WAITFLAGS_H__
|
|
|
|
/* Bits in the third argument to `waitpid'. */
|
|
#define WNOHANG 1 /* Don't block waiting. */
|
|
#define WUNTRACED 2 /* Report status of stopped child. */
|
|
#define WCONTINUED 3 /* Report continued child. */
|
|
|
|
#endif /*__LIB_BITS_WAITFLAGS_H__*/
|