* sysdep.h (stpcpy): Wrap declaration in parentheses.
This commit is contained in:
parent
5a260b6644
commit
0baace3504
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2005-05-05 Hans-Peter Nilsson <hp@axis.com>
|
||||
|
||||
* sysdep.h (stpcpy): Wrap declaration in parentheses.
|
||||
|
||||
2005-05-04 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
* elfxx-ia64.c (ARCH_SIZE): New.
|
||||
|
|
|
@ -126,7 +126,9 @@ extern PTR realloc ();
|
|||
#endif
|
||||
|
||||
#if !HAVE_DECL_STPCPY
|
||||
extern char *stpcpy (char *__dest, const char *__src);
|
||||
/* With glibc, not exposed without -D__USE_GNU, but some old versions
|
||||
(2.2.5-34 on RH 7.3) still expose the macro. */
|
||||
extern char *(stpcpy) (char *__dest, const char *__src);
|
||||
#endif
|
||||
|
||||
#if !HAVE_DECL_STRSTR
|
||||
|
|
Loading…
Reference in a new issue