]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* libiberty.h (fopen_unlocked, fdopen_unlocked, freopen_unlocked):
authorghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 14 Apr 2005 01:42:05 +0000 (01:42 +0000)
committerghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 14 Apr 2005 01:42:05 +0000 (01:42 +0000)
Remove parameter names.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@98121 138bc75d-0d04-0410-961f-82ee72b054a4

include/ChangeLog
include/libiberty.h

index 8a771799ff2f4a2f5cae684a9bd88172316745db..20b17e55e0fea8872bd92026196f0def5ec34f1b 100644 (file)
@@ -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):
index 80aee8b946061ef57c66eea4104f643831305a1e..671a1239c65d078428e0fa12c827a13bee2a410f 100644 (file)
@@ -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.  */