2003-11-07 Jeff Johnston <jjohnstn@redhat.com>
* libc/stdio/vfprintf.c (_VFPRINTF_R): Fix typos that should be referring to _NO_LONGLONG macro.
This commit is contained in:
parent
dcad6a899a
commit
2985521f84
|
@ -1,3 +1,8 @@
|
|||
2003-11-07 Jeff Johnston <jjohnstn@redhat.com>
|
||||
|
||||
* libc/stdio/vfprintf.c (_VFPRINTF_R): Fix typos that should be
|
||||
referring to _NO_LONGLONG macro.
|
||||
|
||||
2003-11-06 Jeff Johnston <jjohnstn@redhat.com>
|
||||
|
||||
* libc/sys/linux/linuxthreads/td_init.c: Replace function name
|
||||
|
|
|
@ -291,7 +291,7 @@ static int exponent _PARAMS((char *, int, int));
|
|||
|
||||
#endif /* FLOATING_POINT */
|
||||
|
||||
#ifndef _NO_LONG_LONG
|
||||
#ifndef _NO_LONGLONG
|
||||
#define quad_t long long
|
||||
#define u_quad_t unsigned long long
|
||||
#else
|
||||
|
@ -1536,7 +1536,7 @@ get_arg (struct _reent *data, int n, char *fmt, va_list *ap,
|
|||
spec_type = LONG_INT;
|
||||
else if (flags & SHORTINT)
|
||||
spec_type = SHORT_INT;
|
||||
#ifndef _NO_LONG_LONG
|
||||
#ifndef _NO_LONGLONG
|
||||
else if (flags & QUADINT)
|
||||
spec_type = QUAD_INT;
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue