summaryrefslogtreecommitdiff
path: root/src/unistd/brk.c
blob: d7652e62e7c4e474aab8af8f0781333931b52762 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#if 0

#include <unistd.h>

int brk(void *addr)
{
	return 0;
}

/*
XOPEN(400,600)
*/


#endif