From 2985521f84ccc8bf626482d80e4a8c292d5413b9 Mon Sep 17 00:00:00 2001 From: Jeff Johnston Date: Fri, 7 Nov 2003 16:01:17 +0000 Subject: 2003-11-07 Jeff Johnston * libc/stdio/vfprintf.c (_VFPRINTF_R): Fix typos that should be referring to _NO_LONGLONG macro. --- newlib/libc/stdio/vfprintf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'newlib/libc') diff --git a/newlib/libc/stdio/vfprintf.c b/newlib/libc/stdio/vfprintf.c index c722a218e..251c3b02c 100644 --- a/newlib/libc/stdio/vfprintf.c +++ b/newlib/libc/stdio/vfprintf.c @@ -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 -- cgit v1.2.3