2006-05-23 Jeff Johnston <jjohnstn@redhat.com>
* libc/include/stdio.h: Protect dprintf prototype with #ifndef dprintf so as to not interfere with historical code defining their own dprintf macro.
This commit is contained in:
parent
13220d1a70
commit
8eeee74e95
|
@ -1,3 +1,9 @@
|
|||
2006-05-23 Jeff Johnston <jjohnstn@redhat.com>
|
||||
|
||||
* libc/include/stdio.h: Protect dprintf prototype
|
||||
with #ifndef dprintf so as to not interfere with
|
||||
historical code defining their own dprintf macro.
|
||||
|
||||
2006-05-18 Jeff Johnston <jjohnstn@redhat.com>
|
||||
|
||||
* libc/include/stdio.h: Add prototypes for fiscanf,
|
||||
|
|
|
@ -229,7 +229,9 @@ off_t _EXFUN(ftello, ( FILE *));
|
|||
#ifndef _REENT_ONLY
|
||||
int _EXFUN(asiprintf, (char **, const char *, ...));
|
||||
int _EXFUN(asprintf, (char **, const char *, ...));
|
||||
#ifndef dprintf
|
||||
int _EXFUN(dprintf, (int, const char *, ...));
|
||||
#endif
|
||||
int _EXFUN(fcloseall, (_VOID));
|
||||
int _EXFUN(fiprintf, (FILE *, const char *, ...));
|
||||
int _EXFUN(fiscanf, (FILE *, const char *, ...));
|
||||
|
|
Loading…
Reference in New Issue