From b133fe1cac9f99b63ea56daf92caa1423b1289d0 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Thu, 20 Nov 2008 22:07:43 +0000 Subject: next portion of libc_hidden_proto removal --- libc/misc/dirent/opendir.c | 8 ++++---- libc/misc/dirent/rewinddir.c | 2 +- libc/misc/dirent/seekdir.c | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) (limited to 'libc/misc/dirent') diff --git a/libc/misc/dirent/opendir.c b/libc/misc/dirent/opendir.c index e1be80ed3..4a5a562f8 100644 --- a/libc/misc/dirent/opendir.c +++ b/libc/misc/dirent/opendir.c @@ -15,11 +15,11 @@ #include "dirstream.h" libc_hidden_proto(opendir) -libc_hidden_proto(open) -libc_hidden_proto(fcntl) +/* libc_hidden_proto(open) */ +/* libc_hidden_proto(fcntl) */ /* libc_hidden_proto(close) */ -libc_hidden_proto(stat) -libc_hidden_proto(fstat) +/* libc_hidden_proto(stat) */ +/* libc_hidden_proto(fstat) */ /* opendir just makes an open() call - it return NULL if it fails * (open sets errno), otherwise it returns a DIR * pointer. diff --git a/libc/misc/dirent/rewinddir.c b/libc/misc/dirent/rewinddir.c index 1bbda0809..99aa6b263 100644 --- a/libc/misc/dirent/rewinddir.c +++ b/libc/misc/dirent/rewinddir.c @@ -9,7 +9,7 @@ #include #include "dirstream.h" -libc_hidden_proto(lseek) +/* libc_hidden_proto(lseek) */ /* rewinddir() just does an lseek(fd,0,0) - see close for comments */ void rewinddir(DIR * dir) diff --git a/libc/misc/dirent/seekdir.c b/libc/misc/dirent/seekdir.c index c41844856..19661509d 100644 --- a/libc/misc/dirent/seekdir.c +++ b/libc/misc/dirent/seekdir.c @@ -9,7 +9,7 @@ #include #include "dirstream.h" -libc_hidden_proto(lseek) +/* libc_hidden_proto(lseek) */ void seekdir(DIR * dir, long int offset) { -- cgit v1.2.3