<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/lib/libc/stdio/vfprintf.c, branch release/5.3.0_cvs</title>
<subtitle>FreeBSD source tree</subtitle>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/'/>
<entry>
<title>This commit was manufactured by cvs2svn to create tag</title>
<updated>2004-11-04T19:12:42+00:00</updated>
<author>
<name>cvs2svn</name>
<email>cvs2svn@FreeBSD.org</email>
</author>
<published>2004-11-04T19:12:42+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=3f86d8a2ea3f3265afaa1fd263b0004c5c000e69'/>
<id>3f86d8a2ea3f3265afaa1fd263b0004c5c000e69</id>
<content type='text'>
'RELENG_5_3_0_RELEASE'.

This commit was manufactured to restore the state of the 5.3-RELEASE image.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
'RELENG_5_3_0_RELEASE'.

This commit was manufactured to restore the state of the 5.3-RELEASE image.
</pre>
</div>
</content>
</entry>
<entry>
<title>MFC: don't forget to va_end() after va_copy().</title>
<updated>2004-08-31T05:20:43+00:00</updated>
<author>
<name>Dag-Erling Smørgrav</name>
<email>des@FreeBSD.org</email>
</author>
<published>2004-08-31T05:20:43+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=994dea634cf256b8968f8534fa2fdb785c103f1e'/>
<id>994dea634cf256b8968f8534fa2fdb785c103f1e</id>
<content type='text'>
Approved by:	re (kensmith)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Approved by:	re (kensmith)
</pre>
</div>
</content>
</entry>
<entry>
<title>The third operand of the conditional operator should have type void too.</title>
<updated>2004-06-08T12:03:48+00:00</updated>
<author>
<name>Stefan Farfeleder</name>
<email>stefanf@FreeBSD.org</email>
</author>
<published>2004-06-08T12:03:48+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=cf6fc3417ac193073d4dd40af768546a95730b5b'/>
<id>cf6fc3417ac193073d4dd40af768546a95730b5b</id>
<content type='text'>
Approved by:	das (mentor)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Approved by:	das (mentor)
</pre>
</div>
</content>
</entry>
<entry>
<title>Rename cantwrite() to prepwrite().  The latter is less confusing,</title>
<updated>2004-06-08T05:45:32+00:00</updated>
<author>
<name>David Schultz</name>
<email>das@FreeBSD.org</email>
</author>
<published>2004-06-08T05:45:32+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=52183d4654e61d240982c5bfa60a05254378c41e'/>
<id>52183d4654e61d240982c5bfa60a05254378c41e</id>
<content type='text'>
since the macro isn't really a predicate, and it has side-effects.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
since the macro isn't really a predicate, and it has side-effects.
</pre>
</div>
</content>
</entry>
<entry>
<title>- To make it easier to compile *printf() and *scanf() without</title>
<updated>2004-05-02T10:55:06+00:00</updated>
<author>
<name>David Schultz</name>
<email>das@FreeBSD.org</email>
</author>
<published>2004-05-02T10:55:06+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=8de9e8971987bdfeb7a26c3868130e7987d5b748'/>
<id>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>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  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().
</pre>
</div>
</content>
</entry>
<entry>
<title>Use the correct size to allocate, copy and clear argument type tables</title>
<updated>2004-04-22T11:35:12+00:00</updated>
<author>
<name>Tim J. Robbins</name>
<email>tjr@FreeBSD.org</email>
</author>
<published>2004-04-22T11:35:12+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=ccc8c6c31f14d4167a8eab0a374d2c1ba9147af5'/>
<id>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>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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)
</pre>
</div>
</content>
</entry>
<entry>
<title>Prepare to handle trivial state-dependent encodings. Full support for</title>
<updated>2004-04-07T09:55:05+00:00</updated>
<author>
<name>Tim J. Robbins</name>
<email>tjr@FreeBSD.org</email>
</author>
<published>2004-04-07T09:55:05+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=93996f6d58e252f9f975d3bc8522df8fe227f002'/>
<id>93996f6d58e252f9f975d3bc8522df8fe227f002</id>
<content type='text'>
state-dependent encodings with locking shifts will come later if there
is demand for it.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
state-dependent encodings with locking shifts will come later if there
is demand for it.
</pre>
</div>
</content>
</entry>
<entry>
<title>Implement __hdtoa() and __hldtoa() and enable printf() support for %a</title>
<updated>2004-01-18T10:32:49+00:00</updated>
<author>
<name>David Schultz</name>
<email>das@FreeBSD.org</email>
</author>
<published>2004-01-18T10:32:49+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=8f59277300bb5d2ed63f97655e0b30813fc5f826'/>
<id>8f59277300bb5d2ed63f97655e0b30813fc5f826</id>
<content type='text'>
and %A, which print floating-point numbers in hexadecimal.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
and %A, which print floating-point numbers in hexadecimal.
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix some bugs affecting the %a and %A format specifiers.  Since</title>
<updated>2004-01-18T08:28:32+00:00</updated>
<author>
<name>David Schultz</name>
<email>das@FreeBSD.org</email>
</author>
<published>2004-01-18T08:28:32+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=904322a50255c8384a7757555c856db2cfa9bcd7'/>
<id>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>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
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.
</pre>
</div>
</content>
</entry>
<entry>
<title>Pass NULL instead of a pointer to a zeroed mbstate_t object.</title>
<updated>2003-11-05T08:20:45+00:00</updated>
<author>
<name>Tim J. Robbins</name>
<email>tjr@FreeBSD.org</email>
</author>
<published>2003-11-05T08:20:45+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=2a49d3767f9fcadc25d13e9eddd686781bc15066'/>
<id>2a49d3767f9fcadc25d13e9eddd686781bc15066</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
