summaryrefslogtreecommitdiff
path: root/lib/libc/unistd/lockf.c
blob: 824f1cefcf380da294e8894c723ff7de8ac6039c (plain)
1
2
3
4
5
6
7
8
9
10
#include <unistd.h> // for lockf, off_t

int lockf(int fildes, int function, off_t size)
{
	(void)fildes;
	(void)function;
	(void)size;
	// TODO
	return 0;
}