1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00

Fix build issue on x86.

Add an undef of __stpcpy in string-inlines.c to avoid a redefinition
error on x86.

	* string/string-inlines.c: Add undef of __stpcpy to fix build issue.
This commit is contained in:
Wilco Dijkstra
2017-06-12 19:48:31 +01:00
parent 3c023dbf57
commit 4bad368d9f
2 changed files with 5 additions and 0 deletions

View File

@ -27,6 +27,7 @@
#include <string.h>
#undef index
#undef rindex
#undef __stpcpy
#undef __NO_INLINE__
#include <bits/string.h>