9 lines
105 B
C
9 lines
105 B
C
#ifndef UNISTD_H_
|
|
#define UNISTD_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
extern void *sbrk(intptr_t increment);
|
|
|
|
#endif
|