<feed xmlns='http://www.w3.org/2005/Atom'>
<title>glibc.git/conform/data/math.h-data, branch master</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/glibc.git/'/>
<entry>
<title>conform: Add initial support for C23.</title>
<updated>2025-04-10T18:39:05+00:00</updated>
<author>
<name>Collin Funk</name>
<email>collin.funk1@gmail.com</email>
</author>
<published>2025-04-05T03:48:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/glibc.git/commit/?id=d18213c6997a058a68bc2547dcb43cf77bc4504f'/>
<id>d18213c6997a058a68bc2547dcb43cf77bc4504f</id>
<content type='text'>
Hi Joseph,

As we discussed, this patch just makes C23 include every check that is
performed by C11.

I tested the commit by adding the ISO23 Make and Python variables to be
the same as ISO11.  So the only difference was compiling with -DISO23
instead of -DISO11.  And changed the temporary directories to instead
use the format f'/tmp/glibc-{self.standard}-{self.header}'.  Then I used
a shell script to run 'cmp' on each file in the ISO11 and ISO23
directories for each header to make sure they were the same.

-- 8&lt; --

Make C23 checks include every test that is performed by C11.  Done by
running the following command:

find conform -name '*.h-data' | xargs sed -i \
  -e 's| !defined ISO11| !defined ISO11 \&amp;\&amp; !defined ISO23|g' \
  -e 's| defined ISO11| defined ISO11 \|\| defined ISO23|g' \
  -e 's|ifdef ISO11|if defined ISO11 \|\| defined ISO23|g' \
  -e 's|ifndef ISO11|if !defined ISO11 \&amp;\&amp; !defined ISO23|g'

Signed-off-by: Collin Funk &lt;collin.funk1@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Hi Joseph,

As we discussed, this patch just makes C23 include every check that is
performed by C11.

I tested the commit by adding the ISO23 Make and Python variables to be
the same as ISO11.  So the only difference was compiling with -DISO23
instead of -DISO11.  And changed the temporary directories to instead
use the format f'/tmp/glibc-{self.standard}-{self.header}'.  Then I used
a shell script to run 'cmp' on each file in the ISO11 and ISO23
directories for each header to make sure they were the same.

-- 8&lt; --

Make C23 checks include every test that is performed by C11.  Done by
running the following command:

find conform -name '*.h-data' | xargs sed -i \
  -e 's| !defined ISO11| !defined ISO11 \&amp;\&amp; !defined ISO23|g' \
  -e 's| defined ISO11| defined ISO11 \|\| defined ISO23|g' \
  -e 's|ifdef ISO11|if defined ISO11 \|\| defined ISO23|g' \
  -e 's|ifndef ISO11|if !defined ISO11 \&amp;\&amp; !defined ISO23|g'

Signed-off-by: Collin Funk &lt;collin.funk1@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>conformtest: Fix XPG standard naming.</title>
<updated>2017-04-27T20:29:35+00:00</updated>
<author>
<name>Joseph Myers</name>
<email>joseph@codesourcery.com</email>
</author>
<published>2017-04-27T20:29:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/glibc.git/commit/?id=0516e24d1882ee7f1946b53bec360b400548cb4f'/>
<id>0516e24d1882ee7f1946b53bec360b400548cb4f</id>
<content type='text'>
The conform/ tests test -D_XOPEN_SOURCE under the name "XPG3", and
-D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED under the name "XPG4".

That naming is misleading.  _XOPEN_SOURCE_EXTENDED actually means
XPG4.2, including UX-shaded interfaces.  _XOPEN_SOURCE actually means
XPG4, or XPG4.2 without UX-shaded interfaces.  (Prior XPG versions
also used _XOPEN_SOURCE, but without any versioning of the values of
the macro, so XPG4.2 without UX-shaded interfaces is the only sensible
set of interfaces for glibc to expose given _XOPEN_SOURCE=1 without
_XOPEN_SOURCE_EXTENDED defined.)

This patch fixes the naming in the conform/ tests, so that what is now
called XPG4 is changed to XPG42, and what is now called XPG3 is
changed to XPG4.

Tested for x86_64 (and verified the complete set of expectations is
unchanged by the patch beyond the intended renaming).

	* conform/GlibcConform.pm (XPG4): Rename standard to XPG42.
	(XPG3): Rename standard to XPG4.
	* conform/Makefile: Likewise.
	* conform/list-header-symbols.pl: Likewise.
	* conform/data/aio.h-data: Likewise.
	* conform/data/arpa/inet.h-data: Likewise.
	* conform/data/complex.h-data: Likewise.
	* conform/data/ctype.h-data: Likewise.
	* conform/data/dlfcn.h-data: Likewise.
	* conform/data/fcntl.h-data: Likewise.
	* conform/data/fenv.h-data: Likewise.
	* conform/data/float.h-data: Likewise.
	* conform/data/fmtmsg.h-data: Likewise.
	* conform/data/ftw.h-data: Likewise.
	* conform/data/grp.h-data: Likewise.
	* conform/data/inttypes.h-data: Likewise.
	* conform/data/iso646.h-data: Likewise.
	* conform/data/langinfo.h-data: Likewise.
	* conform/data/libgen.h-data: Likewise.
	* conform/data/limits.h-data: Likewise.
	* conform/data/locale.h-data: Likewise.
	* conform/data/math.h-data: Likewise.
	* conform/data/mqueue.h-data: Likewise.
	* conform/data/ndbm.h-data: Likewise.
	* conform/data/net/if.h-data: Likewise.
	* conform/data/netdb.h-data: Likewise.
	* conform/data/netinet/in.h-data: Likewise.
	* conform/data/poll.h-data: Likewise.
	* conform/data/pthread.h-data: Likewise.
	* conform/data/pwd.h-data: Likewise.
	* conform/data/sched.h-data: Likewise.
	* conform/data/search.h-data: Likewise.
	* conform/data/semaphore.h-data: Likewise.
	* conform/data/signal.h-data: Likewise.
	* conform/data/spawn.h-data: Likewise.
	* conform/data/stdbool.h-data: Likewise.
	* conform/data/stdint.h-data: Likewise.
	* conform/data/stdio.h-data: Likewise.
	* conform/data/stdlib.h-data: Likewise.
	* conform/data/string.h-data: Likewise.
	* conform/data/strings.h-data: Likewise.
	* conform/data/stropts.h-data: Likewise.
	* conform/data/sys/mman.h-data: Likewise.
	* conform/data/sys/resource.h-data: Likewise.
	* conform/data/sys/select.h-data: Likewise.
	* conform/data/sys/socket.h-data: Likewise.
	* conform/data/sys/stat.h-data: Likewise.
	* conform/data/sys/statvfs.h-data: Likewise.
	* conform/data/sys/time.h-data: Likewise.
	* conform/data/sys/timeb.h-data: Likewise.
	* conform/data/sys/types.h-data: Likewise.
	* conform/data/sys/uio.h-data: Likewise.
	* conform/data/sys/un.h-data: Likewise.
	* conform/data/sys/wait.h-data: Likewise.
	* conform/data/syslog.h-data: Likewise.
	* conform/data/termios.h-data: Likewise.
	* conform/data/tgmath.h-data: Likewise.
	* conform/data/time.h-data: Likewise.
	* conform/data/ucontext.h-data: Likewise.
	* conform/data/unistd.h-data: Likewise.
	* conform/data/utmpx.h-data: Likewise.
	* conform/data/varargs.h-data: Likewise.
	* conform/data/wchar.h-data: Likewise.
	* conform/data/wctype.h-data: Likewise.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The conform/ tests test -D_XOPEN_SOURCE under the name "XPG3", and
-D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED under the name "XPG4".

That naming is misleading.  _XOPEN_SOURCE_EXTENDED actually means
XPG4.2, including UX-shaded interfaces.  _XOPEN_SOURCE actually means
XPG4, or XPG4.2 without UX-shaded interfaces.  (Prior XPG versions
also used _XOPEN_SOURCE, but without any versioning of the values of
the macro, so XPG4.2 without UX-shaded interfaces is the only sensible
set of interfaces for glibc to expose given _XOPEN_SOURCE=1 without
_XOPEN_SOURCE_EXTENDED defined.)

This patch fixes the naming in the conform/ tests, so that what is now
called XPG4 is changed to XPG42, and what is now called XPG3 is
changed to XPG4.

Tested for x86_64 (and verified the complete set of expectations is
unchanged by the patch beyond the intended renaming).

	* conform/GlibcConform.pm (XPG4): Rename standard to XPG42.
	(XPG3): Rename standard to XPG4.
	* conform/Makefile: Likewise.
	* conform/list-header-symbols.pl: Likewise.
	* conform/data/aio.h-data: Likewise.
	* conform/data/arpa/inet.h-data: Likewise.
	* conform/data/complex.h-data: Likewise.
	* conform/data/ctype.h-data: Likewise.
	* conform/data/dlfcn.h-data: Likewise.
	* conform/data/fcntl.h-data: Likewise.
	* conform/data/fenv.h-data: Likewise.
	* conform/data/float.h-data: Likewise.
	* conform/data/fmtmsg.h-data: Likewise.
	* conform/data/ftw.h-data: Likewise.
	* conform/data/grp.h-data: Likewise.
	* conform/data/inttypes.h-data: Likewise.
	* conform/data/iso646.h-data: Likewise.
	* conform/data/langinfo.h-data: Likewise.
	* conform/data/libgen.h-data: Likewise.
	* conform/data/limits.h-data: Likewise.
	* conform/data/locale.h-data: Likewise.
	* conform/data/math.h-data: Likewise.
	* conform/data/mqueue.h-data: Likewise.
	* conform/data/ndbm.h-data: Likewise.
	* conform/data/net/if.h-data: Likewise.
	* conform/data/netdb.h-data: Likewise.
	* conform/data/netinet/in.h-data: Likewise.
	* conform/data/poll.h-data: Likewise.
	* conform/data/pthread.h-data: Likewise.
	* conform/data/pwd.h-data: Likewise.
	* conform/data/sched.h-data: Likewise.
	* conform/data/search.h-data: Likewise.
	* conform/data/semaphore.h-data: Likewise.
	* conform/data/signal.h-data: Likewise.
	* conform/data/spawn.h-data: Likewise.
	* conform/data/stdbool.h-data: Likewise.
	* conform/data/stdint.h-data: Likewise.
	* conform/data/stdio.h-data: Likewise.
	* conform/data/stdlib.h-data: Likewise.
	* conform/data/string.h-data: Likewise.
	* conform/data/strings.h-data: Likewise.
	* conform/data/stropts.h-data: Likewise.
	* conform/data/sys/mman.h-data: Likewise.
	* conform/data/sys/resource.h-data: Likewise.
	* conform/data/sys/select.h-data: Likewise.
	* conform/data/sys/socket.h-data: Likewise.
	* conform/data/sys/stat.h-data: Likewise.
	* conform/data/sys/statvfs.h-data: Likewise.
	* conform/data/sys/time.h-data: Likewise.
	* conform/data/sys/timeb.h-data: Likewise.
	* conform/data/sys/types.h-data: Likewise.
	* conform/data/sys/uio.h-data: Likewise.
	* conform/data/sys/un.h-data: Likewise.
	* conform/data/sys/wait.h-data: Likewise.
	* conform/data/syslog.h-data: Likewise.
	* conform/data/termios.h-data: Likewise.
	* conform/data/tgmath.h-data: Likewise.
	* conform/data/time.h-data: Likewise.
	* conform/data/ucontext.h-data: Likewise.
	* conform/data/unistd.h-data: Likewise.
	* conform/data/utmpx.h-data: Likewise.
	* conform/data/varargs.h-data: Likewise.
	* conform/data/wchar.h-data: Likewise.
	* conform/data/wctype.h-data: Likewise.
</pre>
</div>
</content>
</entry>
<entry>
<title>Don't declare float / long double Bessel functions for XSI POSIX (bug 18977).</title>
<updated>2015-09-16T22:04:40+00:00</updated>
<author>
<name>Joseph Myers</name>
<email>joseph@codesourcery.com</email>
</author>
<published>2015-09-16T22:04:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/glibc.git/commit/?id=1f11365a75a1eedf07a221938e79cd6c9b915ccb'/>
<id>1f11365a75a1eedf07a221938e79cd6c9b915ccb</id>
<content type='text'>
The float and long double versions of Bessel function (j0f, y1l, etc.)
are not in POSIX; only the double versions are.  This patch
accordingly limits the declarations of those functions to __USE_MISC,
and fixes the conform/ test expectations which matched the previous
incorrect declarations.

Tested for x86_64 and x86 (testsuite, and that installed stripped
shared libraries are unchanged by this patch).

	[BZ #18977]
	* math/bits/mathcalls.h
	[!__USE_MISC &amp;&amp; __USE_XOPEN &amp;&amp; !__MATH_DECLARING_DOUBLE] (j0): Do
	not declare.
	[!__USE_MISC &amp;&amp; __USE_XOPEN &amp;&amp; !__MATH_DECLARING_DOUBLE] (j1):
	Likewise.
	[!__USE_MISC &amp;&amp; __USE_XOPEN &amp;&amp; !__MATH_DECLARING_DOUBLE] (jn):
	Likewise.
	[!__USE_MISC &amp;&amp; __USE_XOPEN &amp;&amp; !__MATH_DECLARING_DOUBLE] (y0):
	Likewise.
	[!__USE_MISC &amp;&amp; __USE_XOPEN &amp;&amp; !__MATH_DECLARING_DOUBLE] (y1):
	Likewise.
	[!__USE_MISC &amp;&amp; __USE_XOPEN &amp;&amp; !__MATH_DECLARING_DOUBLE] (yn):
	Likewise.
	* conform/data/math.h-data
	[!ISO99 &amp;&amp; !ISO11 &amp;&amp; !POSIX &amp;&amp; !POSIX2008] (j0f): Do not expect
	function.
	[!ISO99 &amp;&amp; !ISO11 &amp;&amp; !POSIX &amp;&amp; !POSIX2008] (j1f): Likewise.
	[!ISO99 &amp;&amp; !ISO11 &amp;&amp; !POSIX &amp;&amp; !POSIX2008] (jnf): Likewise.
	[!ISO99 &amp;&amp; !ISO11 &amp;&amp; !POSIX &amp;&amp; !POSIX2008] (y0f): Likewise.
	[!ISO99 &amp;&amp; !ISO11 &amp;&amp; !POSIX &amp;&amp; !POSIX2008] (y1f): Likewise.
	[!ISO99 &amp;&amp; !ISO11 &amp;&amp; !POSIX &amp;&amp; !POSIX2008] (ynf): Likewise.
	[!ISO99 &amp;&amp; !ISO11 &amp;&amp; !POSIX &amp;&amp; !POSIX2008] (j0l): Likewise.
	[!ISO99 &amp;&amp; !ISO11 &amp;&amp; !POSIX &amp;&amp; !POSIX2008] (j1l): Likewise.
	[!ISO99 &amp;&amp; !ISO11 &amp;&amp; !POSIX &amp;&amp; !POSIX2008] (jnl): Likewise.
	[!ISO99 &amp;&amp; !ISO11 &amp;&amp; !POSIX &amp;&amp; !POSIX2008] (y0l): Likewise.
	[!ISO99 &amp;&amp; !ISO11 &amp;&amp; !POSIX &amp;&amp; !POSIX2008] (y1l): Likewise.
	[!ISO99 &amp;&amp; !ISO11 &amp;&amp; !POSIX &amp;&amp; !POSIX2008] (ynl): Likewise.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The float and long double versions of Bessel function (j0f, y1l, etc.)
are not in POSIX; only the double versions are.  This patch
accordingly limits the declarations of those functions to __USE_MISC,
and fixes the conform/ test expectations which matched the previous
incorrect declarations.

Tested for x86_64 and x86 (testsuite, and that installed stripped
shared libraries are unchanged by this patch).

	[BZ #18977]
	* math/bits/mathcalls.h
	[!__USE_MISC &amp;&amp; __USE_XOPEN &amp;&amp; !__MATH_DECLARING_DOUBLE] (j0): Do
	not declare.
	[!__USE_MISC &amp;&amp; __USE_XOPEN &amp;&amp; !__MATH_DECLARING_DOUBLE] (j1):
	Likewise.
	[!__USE_MISC &amp;&amp; __USE_XOPEN &amp;&amp; !__MATH_DECLARING_DOUBLE] (jn):
	Likewise.
	[!__USE_MISC &amp;&amp; __USE_XOPEN &amp;&amp; !__MATH_DECLARING_DOUBLE] (y0):
	Likewise.
	[!__USE_MISC &amp;&amp; __USE_XOPEN &amp;&amp; !__MATH_DECLARING_DOUBLE] (y1):
	Likewise.
	[!__USE_MISC &amp;&amp; __USE_XOPEN &amp;&amp; !__MATH_DECLARING_DOUBLE] (yn):
	Likewise.
	* conform/data/math.h-data
	[!ISO99 &amp;&amp; !ISO11 &amp;&amp; !POSIX &amp;&amp; !POSIX2008] (j0f): Do not expect
	function.
	[!ISO99 &amp;&amp; !ISO11 &amp;&amp; !POSIX &amp;&amp; !POSIX2008] (j1f): Likewise.
	[!ISO99 &amp;&amp; !ISO11 &amp;&amp; !POSIX &amp;&amp; !POSIX2008] (jnf): Likewise.
	[!ISO99 &amp;&amp; !ISO11 &amp;&amp; !POSIX &amp;&amp; !POSIX2008] (y0f): Likewise.
	[!ISO99 &amp;&amp; !ISO11 &amp;&amp; !POSIX &amp;&amp; !POSIX2008] (y1f): Likewise.
	[!ISO99 &amp;&amp; !ISO11 &amp;&amp; !POSIX &amp;&amp; !POSIX2008] (ynf): Likewise.
	[!ISO99 &amp;&amp; !ISO11 &amp;&amp; !POSIX &amp;&amp; !POSIX2008] (j0l): Likewise.
	[!ISO99 &amp;&amp; !ISO11 &amp;&amp; !POSIX &amp;&amp; !POSIX2008] (j1l): Likewise.
	[!ISO99 &amp;&amp; !ISO11 &amp;&amp; !POSIX &amp;&amp; !POSIX2008] (jnl): Likewise.
	[!ISO99 &amp;&amp; !ISO11 &amp;&amp; !POSIX &amp;&amp; !POSIX2008] (y0l): Likewise.
	[!ISO99 &amp;&amp; !ISO11 &amp;&amp; !POSIX &amp;&amp; !POSIX2008] (y1l): Likewise.
	[!ISO99 &amp;&amp; !ISO11 &amp;&amp; !POSIX &amp;&amp; !POSIX2008] (ynl): Likewise.
</pre>
</div>
</content>
</entry>
<entry>
<title>conformtest: Fix isnan function return type.</title>
<updated>2012-11-07T19:41:03+00:00</updated>
<author>
<name>Joseph Myers</name>
<email>joseph@codesourcery.com</email>
</author>
<published>2012-11-07T19:41:03+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/glibc.git/commit/?id=1b1264433382dd06d6fb7fa80a822f62ab6076fe'/>
<id>1b1264433382dd06d6fb7fa80a822f62ab6076fe</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>conformtest: Update expectations for more ISO C headers.</title>
<updated>2012-05-09T10:05:14+00:00</updated>
<author>
<name>Joseph Myers</name>
<email>joseph@codesourcery.com</email>
</author>
<published>2012-05-09T10:04:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/glibc.git/commit/?id=b1cc2472d26084ec88b53606baabb82ec6b80db2'/>
<id>b1cc2472d26084ec88b53606baabb82ec6b80db2</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>conformtest: Improve math.h tests for X/Open versions.</title>
<updated>2012-05-01T19:59:15+00:00</updated>
<author>
<name>Joseph Myers</name>
<email>joseph@codesourcery.com</email>
</author>
<published>2012-05-01T19:59:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/glibc.git/commit/?id=a05a144b13bc695e0c16c5c0ff29d9da782cd32f'/>
<id>a05a144b13bc695e0c16c5c0ff29d9da782cd32f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>First steps to get conformtest fully working</title>
<updated>2012-02-26T04:18:39+00:00</updated>
<author>
<name>Ulrich Drepper</name>
<email>drepper@gmail.com</email>
</author>
<published>2012-02-26T04:18:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/glibc.git/commit/?id=3134156779108fe8b46e0f4cd60d837572faaa93'/>
<id>3134156779108fe8b46e0f4cd60d837572faaa93</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix up tests of math.h and tgmath.h for XPG[67].</title>
<updated>2010-01-12T04:54:12+00:00</updated>
<author>
<name>Ulrich Drepper</name>
<email>drepper@redhat.com</email>
</author>
<published>2010-01-12T04:54:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/glibc.git/commit/?id=91251b7f5421e94cd4e05ebc20b9396233574c3f'/>
<id>91251b7f5421e94cd4e05ebc20b9396233574c3f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add support for XPG7 testing.</title>
<updated>2010-01-09T18:56:41+00:00</updated>
<author>
<name>Ulrich Drepper</name>
<email>drepper@redhat.com</email>
</author>
<published>2010-01-09T18:56:41+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/glibc.git/commit/?id=f095bb7204d80f609a73a22796edd6cffd4c6add'/>
<id>f095bb7204d80f609a73a22796edd6cffd4c6add</id>
<content type='text'>
The header conformance testing code needed extending for XPG7.  This
exposed a few bugs in the headers.  There are more changes to come.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The header conformance testing code needed extending for XPG7.  This
exposed a few bugs in the headers.  There are more changes to come.
</pre>
</div>
</content>
</entry>
<entry>
<title>* conform/data/fmtmsg.h-data: Add missing allows.</title>
<updated>2008-01-15T21:30:09+00:00</updated>
<author>
<name>Ulrich Drepper</name>
<email>drepper@redhat.com</email>
</author>
<published>2008-01-15T21:30:09+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/glibc.git/commit/?id=fbe90cd5c7f3ec0d57bfe01cd805db12f53ee946'/>
<id>fbe90cd5c7f3ec0d57bfe01cd805db12f53ee946</id>
<content type='text'>
	* conform/data/ftw.h-data: Likewise.
	* conform/data/inttypes.h-data: Likewise.
	* conform/data/math.h-data: Likewise.
	* conform/data/signal.h-data: Likewise.
	* conform/data/net/if.h-data: Likewise.
	* conform/data/netinet/in.h-data: Likewise.
	* conform/data/sys/socket.h-data: Likewise.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
	* conform/data/ftw.h-data: Likewise.
	* conform/data/inttypes.h-data: Likewise.
	* conform/data/math.h-data: Likewise.
	* conform/data/signal.h-data: Likewise.
	* conform/data/net/if.h-data: Likewise.
	* conform/data/netinet/in.h-data: Likewise.
	* conform/data/sys/socket.h-data: Likewise.
</pre>
</div>
</content>
</entry>
</feed>
