libiberty.h (fopen_unlocked, [...]): Remove parameter names.
* libiberty.h (fopen_unlocked, fdopen_unlocked, freopen_unlocked): Remove parameter names. From-SVN: r98121
This commit is contained in:
parent
fba36601e3
commit
27c556ecda
2 changed files with 8 additions and 3 deletions
|
@ -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):
|
||||
|
|
|
@ -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. */
|
||||
|
|
Loading…
Add table
Reference in a new issue