mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 15:03:34 +00:00
This change includes many bug fixes, for the NT polyfills, strings, memory, boot, and math libraries which were discovered by adding more tools for recreational programming, such as PC emulation. Lemon has also been vendored because it works so well at parsing languages.
18 lines
523 B
C
18 lines
523 B
C
#ifndef COSMOPOLITAN_LIBC_SYSV_CONSTS_W_H_
|
|
#define COSMOPOLITAN_LIBC_SYSV_CONSTS_W_H_
|
|
#include "libc/runtime/symbolic.h"
|
|
|
|
#define WNOHANG SYMBOLIC(WNOHANG)
|
|
#define WUNTRACED SYMBOLIC(WUNTRACED)
|
|
#define WCONTINUED SYMBOLIC(WCONTINUED)
|
|
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
COSMOPOLITAN_C_START_
|
|
|
|
hidden extern const long WNOHANG;
|
|
hidden extern const long WUNTRACED;
|
|
hidden extern const long WCONTINUED;
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* COSMOPOLITAN_LIBC_SYSV_CONSTS_W_H_ */
|