11 lines
146 B
C
11 lines
146 B
C
/* bits/waitpid.h: Constants for waitpid(). */
|
|
|
|
#ifndef _BITS_WAITPID_H
|
|
#define _BITS_WAITPID_H
|
|
|
|
#define _SIGBIT 0x100
|
|
|
|
#define WNOHANG 1
|
|
|
|
#endif
|