* sysdep.h (stpcpy): Wrap declaration in parentheses.

This commit is contained in:
Hans-Peter Nilsson 2005-05-04 23:25:47 +00:00
parent 5a260b6644
commit 0baace3504
2 changed files with 7 additions and 1 deletions

View File

@ -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.

View File

@ -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