diff options
author | 1996-08-05 17:12:08 +0000 | |
---|---|---|
committer | 1996-08-05 17:12:08 +0000 | |
commit | dc19dcbeb8fcd1ca886aedaf5a6c953803508794 (patch) | |
tree | 1a021918ea9c5596a2109a7848b1d8bd69bb1f30 | |
parent | Don't do "ranlib -t" if installed with "-p" since that preserves (diff) | |
download | wireguard-openbsd-dc19dcbeb8fcd1ca886aedaf5a6c953803508794.tar.xz wireguard-openbsd-dc19dcbeb8fcd1ca886aedaf5a6c953803508794.zip |
bring back the changes between 1.1 and 1.2 which got lost
-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; |