aboutsummaryrefslogtreecommitdiff
path: root/lib/mlibc/tests/bsd/sbrk.c
blob: 88b040767268d6b04a0a92ad65791e68af8d9692 (plain)
1
2
3
4
5
6
7
8
9
#include <assert.h>
#include <stdio.h>
#include <unistd.h>

int main() {
	void *ret = sbrk(0);
	assert(ret != (void *) -1);
	assert(ret);
}