diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-20 22:11:44 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-20 22:11:44 +0000 |
commit | cb97aadebfeba7f5e8f1b85beee5ab10e88c2990 (patch) | |
tree | f5f56f2ef0f3048325419857d0b538135524ff8c /libc/misc/file | |
parent | b133fe1cac9f99b63ea56daf92caa1423b1289d0 (diff) |
Last portion of libc_hidden_proto removal.
Appears to build fine (several .configs tried)
Diffstat (limited to 'libc/misc/file')
-rw-r--r-- | libc/misc/file/lockf.c | 2 | ||||
-rw-r--r-- | libc/misc/file/lockf64.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/libc/misc/file/lockf.c b/libc/misc/file/lockf.c index bf14808de..58fcdad0a 100644 --- a/libc/misc/file/lockf.c +++ b/libc/misc/file/lockf.c @@ -24,7 +24,7 @@ #include <errno.h> #include <string.h> -libc_hidden_proto(lockf) +/* libc_hidden_proto(lockf) */ /* Experimentally off - libc_hidden_proto(memset) */ /* libc_hidden_proto(fcntl) */ diff --git a/libc/misc/file/lockf64.c b/libc/misc/file/lockf64.c index ba3887329..e4f6f5cce 100644 --- a/libc/misc/file/lockf64.c +++ b/libc/misc/file/lockf64.c @@ -32,7 +32,7 @@ #define F_GETLK F_GETLK64 #undef F_SETLK #define F_SETLK F_SETLK64 -libc_hidden_proto(fcntl64) +/* libc_hidden_proto(fcntl64) */ #else /* libc_hidden_proto(fcntl) */ #endif @@ -42,7 +42,7 @@ libc_hidden_proto(fcntl64) /* lockf is a simplified interface to fcntl's locking facilities. */ -libc_hidden_proto(lockf64) +/* libc_hidden_proto(lockf64) */ int lockf64 (int fd, int cmd, off64_t len64) { struct flock fl; |