mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 19:43:32 +00:00
17 lines
388 B
C
17 lines
388 B
C
|
#ifndef COSMOPOLITAN_LIBC_RUNTIME_SYSCONF_H_
|
||
|
#define COSMOPOLITAN_LIBC_RUNTIME_SYSCONF_H_
|
||
|
|
||
|
#define _SC_ARG_MAX 0
|
||
|
#define _SC_CLK_TCK 2
|
||
|
#define _SC_PAGESIZE 30
|
||
|
#define _SC_PAGE_SIZE 30
|
||
|
|
||
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
||
|
COSMOPOLITAN_C_START_
|
||
|
|
||
|
long sysconf(int);
|
||
|
|
||
|
COSMOPOLITAN_C_END_
|
||
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
||
|
#endif /* COSMOPOLITAN_LIBC_RUNTIME_SYSCONF_H_ */
|