diff options
Diffstat (limited to 'lib/libc/unistd/lockf.c')
| -rw-r--r-- | lib/libc/unistd/lockf.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/libc/unistd/lockf.c b/lib/libc/unistd/lockf.c index 8b807c34..6f109c55 100644 --- a/lib/libc/unistd/lockf.c +++ b/lib/libc/unistd/lockf.c @@ -3,6 +3,9 @@ int lockf(int fildes, int function, off_t size) { + (void)fildes; + (void)function; + (void)size; // TODO return 0; } |
