blob: b78e82096105ab8194d6e8b1d278d258f6790c0f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#define _BSD_SOURCE
#include <unistd.h>
#include <errno.h>
#include "syscall.h"
int brk(void *end)
{
return __syscall_ret(-ENOMEM);
}
#ifdef TEST
int
main(void) {
return 0;
}
#endif
|