diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-20 22:07:43 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-20 22:07:43 +0000 |
commit | b133fe1cac9f99b63ea56daf92caa1423b1289d0 (patch) | |
tree | 3434fe3fee6b02c3c7006c91366ac7708810a656 /libc/misc/dirent/opendir.c | |
parent | 2cced20a74b0fd22fd34254e5d92ce06e2cfb60d (diff) |
next portion of libc_hidden_proto removal
Diffstat (limited to 'libc/misc/dirent/opendir.c')
-rw-r--r-- | libc/misc/dirent/opendir.c | 8 |
1 files changed, 4 insertions, 4 deletions
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. |