aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>2005-04-14 01:42:05 +0000
committerKaveh Ghazi <ghazi@gcc.gnu.org>2005-04-14 01:42:05 +0000
commit27c556ecda880db48a311aa7fc0b8dc24312beed (patch)
treed5be99e03f484d9d1a6090024987dc12c7188611 /include
parentfba36601e33b708b21efe670eec8663508934a18 (diff)
downloadgcc-27c556ecda880db48a311aa7fc0b8dc24312beed.zip
gcc-27c556ecda880db48a311aa7fc0b8dc24312beed.tar.gz
gcc-27c556ecda880db48a311aa7fc0b8dc24312beed.tar.bz2
libiberty.h (fopen_unlocked, [...]): Remove parameter names.
* libiberty.h (fopen_unlocked, fdopen_unlocked, freopen_unlocked): Remove parameter names. From-SVN: r98121
Diffstat (limited to 'include')
-rw-r--r--include/ChangeLog5
-rw-r--r--include/libiberty.h6
2 files changed, 8 insertions, 3 deletions
diff --git a/include/ChangeLog b/include/ChangeLog
index 8a77179..20b17e5 100644
--- a/include/ChangeLog
+++ b/include/ChangeLog
@@ -1,3 +1,8 @@
+2005-04-13 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
+
+ * libiberty.h (fopen_unlocked, fdopen_unlocked, freopen_unlocked):
+ Remove parameter names.
+
2005-04-11 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* libiberty.h (fopen_unlocked, fdopen_unlocked, freopen_unlocked):
diff --git a/include/libiberty.h b/include/libiberty.h
index 80aee8b..671a123 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. */