mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-01 03:53:33 +00:00
19 lines
503 B
C
19 lines
503 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 long WEXITED;
|
||
|
extern const long WSTOPPED;
|
||
|
extern const long 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_ */
|