merge from gcc
This commit is contained in:
parent
7212bdd8fb
commit
b04e9ddc97
@ -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):
|
||||
|
@ -1,3 +1,13 @@
|
||||
2003-12-19 Andreas Tobler <a.tobler@schweiz.ch>
|
||||
|
||||
* include/fibheap.h (fibnode): Use __extension__ for
|
||||
bit-fields mark and degree if __GNUC__.
|
||||
|
||||
2003-12-18 Kazu Hirata <kazu@cs.umass.edu>
|
||||
|
||||
* include/fibheap.h (fibnode): Use unsigned long int for
|
||||
bit-fields if __GNUC__ is defined.
|
||||
|
||||
2003-12-19 Andreas Tobler <a.tobler@schweiz.ch>
|
||||
|
||||
* fibheap.h (fibnode): Use __extension__ for
|
||||
|
@ -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…
Reference in New Issue
Block a user