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

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

/*
XOPEN(400)
*/