summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2002-10-01 14:07:18 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2002-10-01 14:07:18 +0000
commit0d5858f26562b207d1e2e033350c834a68d70ae0 (patch)
treee6dbdcfd606920513611abafb6d7cb722794916c /sys
parente9a848359b7221f5aad4720e1406802b26c030bc (diff)
Notes
Diffstat (limited to 'sys')
-rw-r--r--sys/i386/include/_types.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/sys/i386/include/_types.h b/sys/i386/include/_types.h
index 1aed9f83b0a9..2b61c4f28fae 100644
--- a/sys/i386/include/_types.h
+++ b/sys/i386/include/_types.h
@@ -49,7 +49,12 @@ typedef unsigned short __uint16_t;
typedef int __int32_t;
typedef unsigned int __uint32_t;
-#if defined(__GNUC__)
+#if defined(lint)
+/* LONGLONG */
+typedef long long __int64_t;
+/* LONGLONG */
+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