diff options
Diffstat (limited to 'libc/misc/file')
-rw-r--r-- | libc/misc/file/lockf.c | 4 | ||||
-rw-r--r-- | libc/misc/file/lockf64.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/libc/misc/file/lockf.c b/libc/misc/file/lockf.c index 63d6a39c9..2ba81de9a 100644 --- a/libc/misc/file/lockf.c +++ b/libc/misc/file/lockf.c @@ -16,6 +16,9 @@ write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#include <features.h> +#undef __lockf + #include <sys/types.h> #include <unistd.h> #include <fcntl.h> @@ -24,6 +27,7 @@ /* lockf is a simplified interface to fcntl's locking facilities. */ +#undef lockf int attribute_hidden __lockf (int fd, int cmd, off_t len) { struct flock fl; diff --git a/libc/misc/file/lockf64.c b/libc/misc/file/lockf64.c index 8440202d5..1e294d9a6 100644 --- a/libc/misc/file/lockf64.c +++ b/libc/misc/file/lockf64.c @@ -17,6 +17,7 @@ Boston, MA 02111-1307, USA. */ #include <features.h> +#undef __lockf64 #ifdef __UCLIBC_HAS_LFS__ #if defined _FILE_OFFSET_BITS && _FILE_OFFSET_BITS != 64 @@ -51,6 +52,7 @@ /* lockf is a simplified interface to fcntl's locking facilities. */ +#undef lockf64 int attribute_hidden __lockf64 (int fd, int cmd, off64_t len64) { struct flock fl; |