diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-08-05 17:12:09 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-08-05 17:12:09 +0000 |
commit | aef046919ad6515155676e3f2573af224248dc6e (patch) | |
tree | 28f0c9fbce36d747e4f76f3f722b803d755b4e13 /sys/arch/m68k | |
parent | 2a294edf61c5770a84559e0bca6ab9d9d81ca187 (diff) |
bring back the changes between 1.1 and 1.2 which got lost
Diffstat (limited to 'sys/arch/m68k')
-rw-r--r-- | sys/arch/m68k/include/types.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/m68k/include/types.h b/sys/arch/m68k/include/types.h index a35b76894da..cda9468020d 100644 --- a/sys/arch/m68k/include/types.h +++ b/sys/arch/m68k/include/types.h @@ -1,4 +1,4 @@ -/* $OpenBSD: types.h,v 1.4 1996/08/04 01:22:45 niklas Exp $ */ +/* $OpenBSD: types.h,v 1.5 1996/08/05 17:12:08 niklas Exp $ */ /* $NetBSD: types.h,v 1.9 1995/07/06 03:39:38 cgd Exp $ */ /*- @@ -64,7 +64,9 @@ typedef short int16_t; typedef unsigned short u_int16_t; typedef int int32_t; typedef unsigned int u_int32_t; +/* LONGLONG */ typedef long long int64_t; +/* LONGLONG */ typedef unsigned long long u_int64_t; typedef int32_t register_t; |