1 /* Stub include file to support dlmalloc. */
2 
3 #include <stdint.h>
4 #include <__macro_PAGESIZE.h>
5 
6 #define sysconf(name) PAGESIZE
7 #define _SC_PAGESIZE
8 
9 /* Declare sbrk. */
10 void *sbrk(intptr_t increment) __attribute__((__warn_unused_result__));
11