Protect the i386 machine-dependant type definitions of __int64_t

and __uint64_t from lint(1) with /* LONGLONG */ comments.
This commit is contained in:
Sheldon Hearn 2000-01-14 10:41:39 +00:00
parent 76f1a3e75f
commit ade4d795c2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=55962

View File

@ -103,7 +103,9 @@
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
/*