From 21730caa6647f645974e132ca8afec79b4eeab2b Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Fri, 18 Sep 2009 20:57:40 +0200 Subject: trim Experimentally off and uncommented hidden sed -i -e '/Experimentally off - /d' $(grep -rl "Experimentally off - " *) sed -i -e '/^\/\*[[:space:]]*libc_hidden_proto(/d' $(grep -rl "libc_hidden_proto" *) should be a nop Signed-off-by: Bernhard Reutner-Fischer --- libc/misc/file/lockf.c | 4 ---- libc/misc/file/lockf64.c | 5 ----- 2 files changed, 9 deletions(-) (limited to 'libc/misc/file') diff --git a/libc/misc/file/lockf.c b/libc/misc/file/lockf.c index 58fcdad0a..b37ace408 100644 --- a/libc/misc/file/lockf.c +++ b/libc/misc/file/lockf.c @@ -24,11 +24,7 @@ #include #include -/* libc_hidden_proto(lockf) */ -/* Experimentally off - libc_hidden_proto(memset) */ -/* libc_hidden_proto(fcntl) */ -/* libc_hidden_proto(getpid) */ /* lockf is a simplified interface to fcntl's locking facilities. */ diff --git a/libc/misc/file/lockf64.c b/libc/misc/file/lockf64.c index e4f6f5cce..177942445 100644 --- a/libc/misc/file/lockf64.c +++ b/libc/misc/file/lockf64.c @@ -32,17 +32,12 @@ #define F_GETLK F_GETLK64 #undef F_SETLK #define F_SETLK F_SETLK64 -/* libc_hidden_proto(fcntl64) */ #else -/* libc_hidden_proto(fcntl) */ #endif -/* Experimentally off - libc_hidden_proto(memset) */ -/* libc_hidden_proto(getpid) */ /* lockf is a simplified interface to fcntl's locking facilities. */ -/* libc_hidden_proto(lockf64) */ int lockf64 (int fd, int cmd, off64_t len64) { struct flock fl; -- cgit v1.2.3