1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-20 11:11:24 +00:00

Change definition of int64 to avoid gcc3.2.1 complaints. Taken from i386

Approved by:  benno
This commit is contained in:
Peter Grehan 2003-01-18 11:18:42 +00:00
parent b51ea35631
commit 0212856f3c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=109475

View File

@ -48,10 +48,21 @@ typedef short __int16_t;
typedef unsigned short __uint16_t;
typedef int __int32_t;
typedef unsigned int __uint32_t;
#if defined(lint)
/* LONGLONG */
typedef long long __int64_t;
typedef long long __int64_t;
/* LONGLONG */
typedef unsigned long long __uint64_t;
typedef unsigned long long __uint64_t;
#elif defined(__GNUC__)
typedef int __attribute__((__mode__(__DI__))) __int64_t;
typedef unsigned int __attribute__((__mode__(__DI__))) __uint64_t;
#else
/* LONGLONG */
typedef long long __int64_t;
/* LONGLONG */
typedef unsigned long long __uint64_t;
#endif
/*
* Standard type definitions.