summaryrefslogtreecommitdiff
path: root/src/unistd/sbrk.c
blob: 69f88cf211c6626b308c784281681dc1096d4944 (plain)
1
2
3
4
5
6
7
8
9
10
#include <unistd.h>

void *sbrk(int incr)
{
	return 0;
}

/*
XOPEN(400,600)
*/