summaryrefslogtreecommitdiff
path: root/lib/libc/unistd/lockf.c
blob: 6f109c55ea363b6ac312074ae1a70a98c18a978c (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <unistd.h>
#include <syscall.h>

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