diff options
| author | David Schultz <das@FreeBSD.org> | 2004-01-18 10:32:49 +0000 | 
|---|---|---|
| committer | David Schultz <das@FreeBSD.org> | 2004-01-18 10:32:49 +0000 | 
| commit | 8f59277300bb5d2ed63f97655e0b30813fc5f826 (patch) | |
| tree | 647f93d3b15dfbb2900d0c437892779fc6eba06b /lib/libc/stdio/vfprintf.c | |
| parent | 6bb87e74a6198ce8fa16984059201f69dba92c7e (diff) | |
Notes
Diffstat (limited to 'lib/libc/stdio/vfprintf.c')
| -rw-r--r-- | lib/libc/stdio/vfprintf.c | 7 | 
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/libc/stdio/vfprintf.c b/lib/libc/stdio/vfprintf.c index 8d048a35faf7..138aa228ec19 100644 --- a/lib/libc/stdio/vfprintf.c +++ b/lib/libc/stdio/vfprintf.c @@ -66,8 +66,9 @@ __FBSDID("$FreeBSD$");  #include "local.h"  #include "fvwrite.h" -/* Define FLOATING_POINT to get floating point. */ +/* Define FLOATING_POINT to get floating point, HEXFLOAT to get %a. */  #define	FLOATING_POINT +#define	HEXFLOAT  union arg {  	int	intarg; @@ -844,10 +845,6 @@ reswitch:	switch (ch) {  				prec++;  			if (dtoaresult != NULL)  				freedtoa(dtoaresult); -			/* -			 * XXX We don't actually have a conversion -			 * XXX routine for this yet. -			 */  			if (flags & LONGDBL) {  				fparg.ldbl = GETARG(long double);  				dtoaresult = cp =  | 
