diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2010-05-10 21:41:09 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2010-05-10 21:41:09 +0000 |
commit | 3904221c8b5efb0b07a4c465b2c0f8131e09fe2a (patch) | |
tree | 66edd783f9e0ddab14613ea3083102d6faa9a10a | |
parent | 85107ba8bdcb16c8f710b488982224bd2cda2842 (diff) |
/* XXX - we don't use __COMPILER_INT64__ */ so remove it.
ok millert@
-rw-r--r-- | sys/arch/sparc64/include/_types.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/sys/arch/sparc64/include/_types.h b/sys/arch/sparc64/include/_types.h index 61711455ac4..a9cfe0a0319 100644 --- a/sys/arch/sparc64/include/_types.h +++ b/sys/arch/sparc64/include/_types.h @@ -1,4 +1,4 @@ -/* $OpenBSD: _types.h,v 1.9 2009/11/04 19:14:10 kettenis Exp $ */ +/* $OpenBSD: _types.h,v 1.10 2010/05/10 21:41:08 kettenis Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -48,16 +48,10 @@ typedef short __int16_t; typedef unsigned short __uint16_t; typedef int __int32_t; typedef unsigned int __uint32_t; -/* XXX - we don't use __COMPILER_INT64__ */ -#ifdef __COMPILER_INT64__ -typedef __COMPILER_INT64__ __int64_t; -typedef __COMPILER_UINT64__ __uint64_t; -#else /* LONGLONG */ typedef long long __int64_t; /* LONGLONG */ typedef unsigned long long __uint64_t; -#endif /* 7.18.1.2 Minimum-width integer types */ typedef __int8_t __int_least8_t; |