Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/hpcmips/stand/include/mips just use __int64 and uns...
details: https://anonhg.NetBSD.org/src/rev/087bdc502b2a
branches: trunk
changeset: 481634:087bdc502b2a
user: cgd <cgd%NetBSD.org@localhost>
date: Thu Feb 03 03:17:23 2000 +0000
description:
just use __int64 and unsigned __int64 rather than *INT64TYPE
diffstat:
sys/arch/hpcmips/stand/include/mips/types.h | 13 +++----------
1 files changed, 3 insertions(+), 10 deletions(-)
diffs (27 lines):
diff -r 503936a180ab -r 087bdc502b2a sys/arch/hpcmips/stand/include/mips/types.h
--- a/sys/arch/hpcmips/stand/include/mips/types.h Thu Feb 03 02:20:13 2000 +0000
+++ b/sys/arch/hpcmips/stand/include/mips/types.h Thu Feb 03 03:17:23 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: types.h,v 1.1.1.1 1999/09/16 12:23:27 takemura Exp $ */
+/* $NetBSD: types.h,v 1.2 2000/02/03 03:17:23 cgd Exp $ */
/*-
* Copyright (c) 1992, 1993
@@ -92,15 +92,8 @@
typedef unsigned short u_int16_t;
typedef int int32_t;
typedef unsigned int u_int32_t;
-#ifdef NO_LONG_LONG
-typedef INT64TYPE int64_t;
-typedef UINT64TYPE u_int64_t;
-#else
-/* LONGLONG */
-typedef long long int64_t;
-/* LONGLONG */
-typedef unsigned long long u_int64_t;
-#endif
+typedef __int64 int64_t;
+typedef unsigned __int64 u_int64_t;
typedef int32_t register_t;
Home |
Main Index |
Thread Index |
Old Index