<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src-test2/lib/libc/stdio/vfprintf.c, branch release/6.0.0_cvs</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src-test2/atom?h=release%2F6.0.0_cvs</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src-test2/atom?h=release%2F6.0.0_cvs'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/'/>
<updated>2005-11-03T00:35:26Z</updated>
<entry>
<title>This commit was manufactured by cvs2svn to create tag</title>
<updated>2005-11-03T00:35:26Z</updated>
<author>
<name>cvs2svn</name>
<email>cvs2svn@FreeBSD.org</email>
</author>
<published>2005-11-03T00:35:26Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=3640cb54210edbb7edbf1b12ef0127ecfcea967d'/>
<id>urn:sha1:3640cb54210edbb7edbf1b12ef0127ecfcea967d</id>
<content type='text'>
'RELENG_6_0_0_RELEASE'.

This commit was manufactured to restore the state of the 6.0-RELEASE image.
</content>
</entry>
<entry>
<title>Be bug-for-bug compatible with the C standard with respect to</title>
<updated>2005-04-16T22:36:51Z</updated>
<author>
<name>David Schultz</name>
<email>das@FreeBSD.org</email>
</author>
<published>2005-04-16T22:36:51Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=1be5319a76792390e57ecb358958469df96f39d6'/>
<id>urn:sha1:1be5319a76792390e57ecb358958469df96f39d6</id>
<content type='text'>
printf("%#.0o", 0).  Cite an amusing passage from a defect report.
</content>
</entry>
<entry>
<title>Don't forget to va_end() the va_list we get from va_copy().</title>
<updated>2004-08-26T06:25:28Z</updated>
<author>
<name>Dag-Erling Smørgrav</name>
<email>des@FreeBSD.org</email>
</author>
<published>2004-08-26T06:25:28Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=096ad1042a55c01aea5461fd80b623a42eba8cd5'/>
<id>urn:sha1:096ad1042a55c01aea5461fd80b623a42eba8cd5</id>
<content type='text'>
Submitted by:	Sean McNeil &lt;sean@mcneil.com&gt;
MFC after:	3 days
</content>
</entry>
<entry>
<title>The third operand of the conditional operator should have type void too.</title>
<updated>2004-06-08T12:03:48Z</updated>
<author>
<name>Stefan Farfeleder</name>
<email>stefanf@FreeBSD.org</email>
</author>
<published>2004-06-08T12:03:48Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=cf6fc3417ac193073d4dd40af768546a95730b5b'/>
<id>urn:sha1:cf6fc3417ac193073d4dd40af768546a95730b5b</id>
<content type='text'>
Approved by:	das (mentor)
</content>
</entry>
<entry>
<title>Rename cantwrite() to prepwrite().  The latter is less confusing,</title>
<updated>2004-06-08T05:45:32Z</updated>
<author>
<name>David Schultz</name>
<email>das@FreeBSD.org</email>
</author>
<published>2004-06-08T05:45:32Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=52183d4654e61d240982c5bfa60a05254378c41e'/>
<id>urn:sha1:52183d4654e61d240982c5bfa60a05254378c41e</id>
<content type='text'>
since the macro isn't really a predicate, and it has side-effects.
</content>
</entry>
<entry>
<title>- To make it easier to compile *printf() and *scanf() without</title>
<updated>2004-05-02T10:55:06Z</updated>
<author>
<name>David Schultz</name>
<email>das@FreeBSD.org</email>
</author>
<published>2004-05-02T10:55:06Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=8de9e8971987bdfeb7a26c3868130e7987d5b748'/>
<id>urn:sha1:8de9e8971987bdfeb7a26c3868130e7987d5b748</id>
<content type='text'>
  floating-point support, remove default definition of FLOATING_POINT
  from the source, and change the compile-time option to
  NO_FLOATING_POINT.
- Remove the HEXFLOAT option.  It saves an insignificant amount of
  space (&lt;0.1% of the size of libc on i386) and complicates vfprintf()
  and checkfmt().
</content>
</entry>
<entry>
<title>Use the correct size to allocate, copy and clear argument type tables</title>
<updated>2004-04-22T11:35:12Z</updated>
<author>
<name>Tim J. Robbins</name>
<email>tjr@FreeBSD.org</email>
</author>
<published>2004-04-22T11:35:12Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=ccc8c6c31f14d4167a8eab0a374d2c1ba9147af5'/>
<id>urn:sha1:ccc8c6c31f14d4167a8eab0a374d2c1ba9147af5</id>
<content type='text'>
after their change from an array of char to an array of enum.
This fixes problems that occurred when using positional arguments in
format strings, particularly with more than STATIC_ARG_TBL_SIZE (8)
of them.

PR:		65841
Submitted by:	Steven Smith (mostly)
</content>
</entry>
<entry>
<title>Prepare to handle trivial state-dependent encodings. Full support for</title>
<updated>2004-04-07T09:55:05Z</updated>
<author>
<name>Tim J. Robbins</name>
<email>tjr@FreeBSD.org</email>
</author>
<published>2004-04-07T09:55:05Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=93996f6d58e252f9f975d3bc8522df8fe227f002'/>
<id>urn:sha1:93996f6d58e252f9f975d3bc8522df8fe227f002</id>
<content type='text'>
state-dependent encodings with locking shifts will come later if there
is demand for it.
</content>
</entry>
<entry>
<title>Implement __hdtoa() and __hldtoa() and enable printf() support for %a</title>
<updated>2004-01-18T10:32:49Z</updated>
<author>
<name>David Schultz</name>
<email>das@FreeBSD.org</email>
</author>
<published>2004-01-18T10:32:49Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=8f59277300bb5d2ed63f97655e0b30813fc5f826'/>
<id>urn:sha1:8f59277300bb5d2ed63f97655e0b30813fc5f826</id>
<content type='text'>
and %A, which print floating-point numbers in hexadecimal.
</content>
</entry>
<entry>
<title>Fix some bugs affecting the %a and %A format specifiers.  Since</title>
<updated>2004-01-18T08:28:32Z</updated>
<author>
<name>David Schultz</name>
<email>das@FreeBSD.org</email>
</author>
<published>2004-01-18T08:28:32Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=904322a50255c8384a7757555c856db2cfa9bcd7'/>
<id>urn:sha1:904322a50255c8384a7757555c856db2cfa9bcd7</id>
<content type='text'>
these are not fully implemented and ifdef'd out, the bugs have
never manifested themselves.  Specifically:

	- Fix a memory leak in the case where %a follows another
	  floating-point format.
	- Make the %a/%A code behave like %e/%E with respect to
	  precision.
	- It is no longer valid to assume that '-' and '0x' are
	  mutually exclusive.
	- Address other minor issues.
</content>
</entry>
</feed>
