cosmopolitan/libc/sysv/consts/w.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
342 B
C
Raw Normal View History

2020-06-15 14:18:57 +00:00
#ifndef COSMOPOLITAN_LIBC_SYSV_CONSTS_W_H_
#define COSMOPOLITAN_LIBC_SYSV_CONSTS_W_H_
COSMOPOLITAN_C_START_
extern const int WNOHANG;
extern const int WUNTRACED;
extern const int WCONTINUED;
2020-06-15 14:18:57 +00:00
#define WNOHANG 1
#define WUNTRACED WUNTRACED
#define WCONTINUED WCONTINUED
COSMOPOLITAN_C_END_
2020-06-15 14:18:57 +00:00
#endif /* COSMOPOLITAN_LIBC_SYSV_CONSTS_W_H_ */