about summary refs log tree commit diff
path: root/conform/data/string.h-data
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2014-04-30 15:35:18 +0000
committerJoseph Myers <joseph@codesourcery.com>2014-04-30 15:35:18 +0000
commit9a461d467f56a16e199d4c23d3e327eb886035af (patch)
tree98f4b53d9a04f35bd4743dff022ada3519f1e506 /conform/data/string.h-data
parent57f41c40973e5baf1946e9773fddf064972974e0 (diff)
downloadglibc-9a461d467f56a16e199d4c23d3e327eb886035af.tar.gz
glibc-9a461d467f56a16e199d4c23d3e327eb886035af.tar.xz
glibc-9a461d467f56a16e199d4c23d3e327eb886035af.zip
conformtest: clean up POSIX expectations for stdlib.h, string.h.
Continuing the series of patches to clean up conformtest expectations
for "POSIX" (1995/6) based on review of the expectations against the
standard, this patch cleans up expectations for stdlib.h and
string.h.  Tested x86_64; no new XFAILs needed.

	* conform/data/stdlib.h-data [POSIX] (stddef.h): Do not allow
	header inclusion.
	[POSIX] (limits.h): Likewise.
	[POSIX] (math.h): Likewise.
	[POSIX] (sys/wait.h): Likewise.
	* conform/data/string.h-data [POSIX || UNIX98] (strtok_r): Require
	function.
	[POSIX] (stddef.h): Do not allow header inclusion.
Diffstat (limited to 'conform/data/string.h-data')
-rw-r--r--conform/data/string.h-data4
1 files changed, 2 insertions, 2 deletions
diff --git a/conform/data/string.h-data b/conform/data/string.h-data
index 365a5377a7..cc3b1c9732 100644
--- a/conform/data/string.h-data
+++ b/conform/data/string.h-data
@@ -53,7 +53,7 @@ function {char*} strsignal (int)
 function size_t strspn (const char*, const char*)
 function {char*} strstr (const char*, const char*)
 function {char*} strtok (char*, const char*)
-#if defined XOPEN2K || defined XOPEN2K8 || defined POSIX2008
+#if defined POSIX || defined UNIX98 || defined XOPEN2K || defined XOPEN2K8 || defined POSIX2008
 function {char*} strtok_r (char*, const char*, char**)
 #endif
 function size_t strxfrm (char*, const char*, size_t)
@@ -61,7 +61,7 @@ function size_t strxfrm (char*, const char*, size_t)
 function size_t strxfrm_l (char*, const char*, size_t, locale_t)
 #endif
 
-#if !defined ISO && !defined ISO99 && !defined ISO11
+#if !defined ISO && !defined ISO99 && !defined ISO11 && !defined POSIX
 allow-header stddef.h
 #endif