Fix build problem caused by definition of SSP version of stpcpy(3).

This commit is contained in:
tron 2013-11-06 21:44:44 +00:00
parent 24f67c8710
commit 20b1c42258

View File

@ -29,6 +29,10 @@
extern "C" {
#endif
#ifdef _FORTIFY_SOURCE
#undef stpcpy
#endif
/* Copy SRC to DST, returning the address of the terminating '\0' in DST. */
extern char *stpcpy (char *dst, const char *src);