mirror of
https://github.com/ziglang/zig.git
synced 2025-12-10 16:23:07 +00:00
11 lines
242 B
C
Vendored
11 lines
242 B
C
Vendored
/* Stub include file to support dlmalloc. */
|
|
|
|
#include <stdint.h>
|
|
#include <__macro_PAGESIZE.h>
|
|
|
|
#define sysconf(name) PAGESIZE
|
|
#define _SC_PAGESIZE
|
|
|
|
/* Declare sbrk. */
|
|
void *sbrk(intptr_t increment) __attribute__((__warn_unused_result__));
|