diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | conform/Makefile | 1 | ||||
-rw-r--r-- | conform/data/string.h-data | 2 |
3 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,9 @@ +2016-05-13 Joseph Myers <joseph@codesourcery.com> + + * conform/data/string.h-data (strdup): Do not expect for [XPG3]. + * conform/Makefile (test-xfail-XPG3/string.h/conform): Remove + variable. + 2016-05-13 H.J. Lu <hongjiu.lu@intel.com> [BZ #20072] diff --git a/conform/Makefile b/conform/Makefile index b46dc42f06..0d610ad99f 100644 --- a/conform/Makefile +++ b/conform/Makefile @@ -169,7 +169,6 @@ test-xfail-XPG3/pwd.h/conform = yes test-xfail-XPG3/search.h/conform = yes test-xfail-XPG3/signal.h/conform = yes test-xfail-XPG3/stdlib.h/conform = yes -test-xfail-XPG3/string.h/conform = yes test-xfail-XPG3/sys/wait.h/conform = yes test-xfail-XPG4/arpa/inet.h/conform = yes test-xfail-XPG4/netdb.h/conform = yes diff --git a/conform/data/string.h-data b/conform/data/string.h-data index cc3b1c9732..39fa76cd22 100644 --- a/conform/data/string.h-data +++ b/conform/data/string.h-data @@ -27,7 +27,7 @@ function int strcoll_l (const char*, const char*, locale_t) #endif function {char*} strcpy (char*, const char*) function size_t strcspn (const char*, const char*) -#if !defined ISO && !defined ISO99 & !defined ISO11 && !defined POSIX && !defined POSIX2008 +#if !defined ISO && !defined ISO99 & !defined ISO11 && !defined XPG3 && !defined POSIX && !defined POSIX2008 function {char*} strdup (const char*) #endif function {char*} strerror (int) |