summaryrefslogtreecommitdiff
path: root/include/libiberty.h
diff options
context:
space:
mode:
authorghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>2005-04-14 01:42:05 +0000
committerghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>2005-04-14 01:42:05 +0000
commite7f1b0278152ced85c0af08fc6b2e758ef951d4e (patch)
treed5be99e03f484d9d1a6090024987dc12c7188611 /include/libiberty.h
parentbe13fbb926b56dd6131bd864ff27fa28cfa034e3 (diff)
downloadgcc-e7f1b0278152ced85c0af08fc6b2e758ef951d4e.tar.gz
* libiberty.h (fopen_unlocked, fdopen_unlocked, freopen_unlocked):
Remove parameter names. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@98121 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'include/libiberty.h')
-rw-r--r--include/libiberty.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/libiberty.h b/include/libiberty.h
index 80aee8b9460..671a1239c65 100644
--- a/include/libiberty.h
+++ b/include/libiberty.h
@@ -52,9 +52,9 @@ extern "C" {
the stream is setup to avoid any multi-threaded locking. Otherwise
return the FILE pointer unchanged. */
-extern FILE *fopen_unlocked (const char *path, const char *mode);
-extern FILE *fdopen_unlocked (int fildes, const char *mode);
-extern FILE *freopen_unlocked (const char *path, const char *mode, FILE *stream);
+extern FILE *fopen_unlocked (const char *, const char *);
+extern FILE *fdopen_unlocked (int, const char *);
+extern FILE *freopen_unlocked (const char *, const char *, FILE *);
/* Build an argument vector from a string. Allocates memory using
malloc. Use freeargv to free the vector. */