2002-02-25 Jeff Johnston <jjohnstn@redhat.com>

* libc/include/sys/config.h: Add __extension__ in front of
        long long references.
This commit is contained in:
Jeff Johnston
2002-02-25 23:51:10 +00:00
parent acb5617538
commit c1010a63d8
2 changed files with 7 additions and 2 deletions

View File

@ -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