diff options
Diffstat (limited to 'libc/misc/file/lockf.c')
-rw-r--r-- | libc/misc/file/lockf.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/misc/file/lockf.c b/libc/misc/file/lockf.c index 29c91482a..dd5b90b3e 100644 --- a/libc/misc/file/lockf.c +++ b/libc/misc/file/lockf.c @@ -24,7 +24,7 @@ /* lockf is a simplified interface to fcntl's locking facilities. */ -int lockf (int fd, int cmd, off_t len) +int attribute_hidden __lockf (int fd, int cmd, off_t len) { struct flock fl; @@ -68,3 +68,4 @@ int lockf (int fd, int cmd, off_t len) return fcntl(fd, cmd, &fl); } +strong_alias(__lockf,lockf) |