diff options
Diffstat (limited to 'lib/libc/unistd/lockf.c')
| -rw-r--r-- | lib/libc/unistd/lockf.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/libc/unistd/lockf.c b/lib/libc/unistd/lockf.c new file mode 100644 index 00000000..8b807c34 --- /dev/null +++ b/lib/libc/unistd/lockf.c @@ -0,0 +1,8 @@ +#include <unistd.h> +#include <syscall.h> + +int lockf(int fildes, int function, off_t size) +{ + // TODO + return 0; +} |
