From c1010a63d8d1759eee32ff6116ace4567739d060 Mon Sep 17 00:00:00 2001 From: Jeff Johnston Date: Mon, 25 Feb 2002 23:51:10 +0000 Subject: 2002-02-25 Jeff Johnston * libc/include/sys/config.h: Add __extension__ in front of long long references. --- newlib/ChangeLog | 5 +++++ newlib/libc/include/sys/config.h | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/newlib/ChangeLog b/newlib/ChangeLog index f6b7b59f8..edba6ea28 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,8 @@ +2002-02-25 Jeff Johnston + + * libc/include/sys/config.h: Add __extension__ in front of + long long references. + 2002-02-23 Corinna Vinschen * libc/include/sys/stat.h (_fstat): Don't declare when compiling Cygwin. diff --git a/newlib/libc/include/sys/config.h b/newlib/libc/include/sys/config.h index dcde26aee..60c6d89c0 100644 --- a/newlib/libc/include/sys/config.h +++ b/newlib/libc/include/sys/config.h @@ -141,8 +141,8 @@ typedef unsigned int __uint32_t; typedef long int __int64_t; typedef unsigned long int __uint64_t; #else -typedef long long __int64_t; -typedef unsigned long long __uint64_t; +__extension__ typedef long long __int64_t; +__extension__ typedef unsigned long long __uint64_t; #endif #ifndef _POINTER_INT -- cgit v1.2.3