mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-01 20:13:31 +00:00
18 lines
500 B
C
18 lines
500 B
C
#ifndef COSMOPOLITAN_LIBC_SYSV_CONSTS_WAITID_H_
|
|
#define COSMOPOLITAN_LIBC_SYSV_CONSTS_WAITID_H_
|
|
#include "libc/runtime/symbolic.h"
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
COSMOPOLITAN_C_START_
|
|
|
|
extern const int WEXITED;
|
|
extern const int WSTOPPED;
|
|
extern const int WNOWAIT;
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
|
|
#define WEXITED SYMBOLIC(WEXITED)
|
|
#define WSTOPPED SYMBOLIC(WSTOPPED)
|
|
#define WNOWAIT SYMBOLIC(WNOWAIT)
|
|
|
|
#endif /* COSMOPOLITAN_LIBC_SYSV_CONSTS_WAITID_H_ */
|