summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1999-01-08 03:04:10 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1999-01-08 03:04:10 +0000
commitcdd08e41775db247d14b073ba8f4c55aa1a4085b (patch)
tree77b5a4ebeababd04edfe29443ae8a20f16f6a532
parent017a2a281ae476f7e3f513cd75351960d6df2d89 (diff)
make uint*_t line up nicely and add a few $OpenBSD$ tags that were missing
-rw-r--r--sys/arch/alpha/include/types.h10
-rw-r--r--sys/arch/arm32/include/types.h11
-rw-r--r--sys/arch/hppa/include/types.h16
-rw-r--r--sys/arch/i386/include/types.h9
-rw-r--r--sys/arch/kbus/include/types.h9
-rw-r--r--sys/arch/m68k/include/types.h10
-rw-r--r--sys/arch/mips/include/types.h10
-rw-r--r--sys/arch/mvme88k/include/types.h9
-rw-r--r--sys/arch/pc532/include/types.h9
-rw-r--r--sys/arch/powerpc/include/types.h19
-rw-r--r--sys/arch/sparc/include/types.h10
-rw-r--r--sys/arch/vax/include/types.h10
-rw-r--r--sys/arch/wgrisc/include/types.h10
13 files changed, 74 insertions, 68 deletions
diff --git a/sys/arch/alpha/include/types.h b/sys/arch/alpha/include/types.h
index c320b423e61..6f95dce7119 100644
--- a/sys/arch/alpha/include/types.h
+++ b/sys/arch/alpha/include/types.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: types.h,v 1.5 1999/01/07 23:38:59 millert Exp $ */
+/* $OpenBSD: types.h,v 1.6 1999/01/08 03:04:07 millert Exp $ */
/* $NetBSD: types.h,v 1.6 1996/12/05 00:13:47 cgd Exp $ */
/*-
@@ -61,16 +61,16 @@ typedef unsigned long vm_size_t;
#define __BIT_TYPES_DEFINED__
typedef __signed char int8_t;
typedef unsigned char u_int8_t;
-typedef unsigned char uint8_t;
+typedef unsigned char uint8_t;
typedef short int16_t;
typedef unsigned short u_int16_t;
-typedef unsigned short uint16_t;
+typedef unsigned short uint16_t;
typedef int int32_t;
typedef unsigned int u_int32_t;
-typedef unsigned int uint32_t;
+typedef unsigned int uint32_t;
typedef long int64_t;
typedef unsigned long u_int64_t;
-typedef unsigned long uint64_t;
+typedef unsigned long uint64_t;
typedef int64_t register_t;
diff --git a/sys/arch/arm32/include/types.h b/sys/arch/arm32/include/types.h
index a957a450402..c3fef86182f 100644
--- a/sys/arch/arm32/include/types.h
+++ b/sys/arch/arm32/include/types.h
@@ -1,4 +1,5 @@
-/* $NetBSD: types.h,v 1.2 1996/03/06 23:04:04 mark Exp $ */
+/* $NetBSD: types.h,v 1.2 1996/03/06 23:04:04 mark Exp $ */
+/* $OpenBSD: types.h,v 1.3 1999/01/08 03:04:07 millert Exp $ */
/*
* Copyright (c) 1990 The Regents of the University of California.
@@ -58,16 +59,16 @@ typedef unsigned long vm_size_t;
#define __BIT_TYPES_DEFINED__
typedef __signed char int8_t;
typedef unsigned char u_int8_t;
-typedef unsigned char uint8_t;
+typedef unsigned char uint8_t;
typedef short int16_t;
typedef unsigned short u_int16_t;
-typedef unsigned short uint16_t;
+typedef unsigned short uint16_t;
typedef int int32_t;
typedef unsigned int u_int32_t;
-typedef unsigned int uint32_t;
+typedef unsigned int uint32_t;
typedef long long int64_t;
typedef unsigned long long u_int64_t;
-typedef unsigned long long uint64_t;
+typedef unsigned long long uint64_t;
typedef int32_t register_t;
diff --git a/sys/arch/hppa/include/types.h b/sys/arch/hppa/include/types.h
index c6feed5f41c..d655db6a48a 100644
--- a/sys/arch/hppa/include/types.h
+++ b/sys/arch/hppa/include/types.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: types.h,v 1.3 1999/01/07 23:39:00 millert Exp $ */
+/* $OpenBSD: types.h,v 1.4 1999/01/08 03:04:07 millert Exp $ */
/*-
* Copyright (c) 1990, 1993
@@ -70,21 +70,21 @@ typedef __signed char int8_t;
typedef char int8_t;
#endif
typedef unsigned char u_int8_t;
-typedef unsigned char uint8_t;
+typedef unsigned char uint8_t;
typedef short int16_t;
typedef unsigned short u_int16_t;
-typedef unsigned short uint16_t;
+typedef unsigned short uint16_t;
typedef int int32_t;
typedef unsigned int u_int32_t;
-typedef unsigned int uint32_t;
+typedef unsigned int uint32_t;
#ifdef __STDC__
typedef long long int64_t;
typedef unsigned long long u_int64_t;
-typedef unsigned long long uint64_t;
+typedef unsigned long long uint64_t;
#else
-typedef long int64_t;
-typedef unsigned long u_int64_t;
-typedef unsigned long uint64_t;
+typedef long int64_t;
+typedef unsigned long u_int64_t;
+typedef unsigned long uint64_t;
#endif
typedef int32_t register_t;
diff --git a/sys/arch/i386/include/types.h b/sys/arch/i386/include/types.h
index 404e73970d5..41f4f6e50f8 100644
--- a/sys/arch/i386/include/types.h
+++ b/sys/arch/i386/include/types.h
@@ -1,4 +1,5 @@
/* $NetBSD: types.h,v 1.12 1995/12/24 01:08:03 mycroft Exp $ */
+/* $OpenBSD: types.h,v 1.5 1999/01/08 03:04:07 millert Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@@ -60,19 +61,19 @@ typedef unsigned long vm_size_t;
#define __BIT_TYPES_DEFINED__
typedef __signed char int8_t;
typedef unsigned char u_int8_t;
-typedef unsigned char uint8_t;
+typedef unsigned char uint8_t;
typedef short int16_t;
typedef unsigned short u_int16_t;
-typedef unsigned short uint16_t;
+typedef unsigned short uint16_t;
typedef int int32_t;
typedef unsigned int u_int32_t;
-typedef unsigned int uint32_t;
+typedef unsigned int uint32_t;
/* LONGLONG */
typedef long long int64_t;
/* LONGLONG */
typedef unsigned long long u_int64_t;
/* LONGLONG */
-typedef unsigned long long uint64_t;
+typedef unsigned long long uint64_t;
typedef int32_t register_t;
diff --git a/sys/arch/kbus/include/types.h b/sys/arch/kbus/include/types.h
index aeea2339a18..998c2e32602 100644
--- a/sys/arch/kbus/include/types.h
+++ b/sys/arch/kbus/include/types.h
@@ -1,4 +1,5 @@
/* $NetBSD: types.h,v 1.9 1996/03/14 00:48:30 pk Exp $ */
+/* $OpenBSD: types.h,v 1.3 1999/01/08 03:04:08 millert Exp $ */
/*
* Copyright (c) 1992, 1993
@@ -69,16 +70,16 @@ typedef unsigned long vm_size_t;
#define __BIT_TYPES_DEFINED__
typedef __signed char int8_t;
typedef unsigned char u_int8_t;
-typedef unsigned char uint8_t;
+typedef unsigned char uint8_t;
typedef short int16_t;
typedef unsigned short u_int16_t;
-typedef unsigned short uint16_t;
+typedef unsigned short uint16_t;
typedef int int32_t;
typedef unsigned int u_int32_t;
-typedef unsigned int uint32_t;
+typedef unsigned int uint32_t;
typedef long long int64_t;
typedef unsigned long long u_int64_t;
-typedef unsigned long long uint64_t;
+typedef unsigned long long uint64_t;
typedef int32_t register_t;
diff --git a/sys/arch/m68k/include/types.h b/sys/arch/m68k/include/types.h
index e41b6af80f9..8f5cbd2749e 100644
--- a/sys/arch/m68k/include/types.h
+++ b/sys/arch/m68k/include/types.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: types.h,v 1.6 1999/01/07 23:39:01 millert Exp $ */
+/* $OpenBSD: types.h,v 1.7 1999/01/08 03:04:08 millert Exp $ */
/* $NetBSD: types.h,v 1.9 1995/07/06 03:39:38 cgd Exp $ */
/*-
@@ -60,19 +60,19 @@ typedef unsigned long vm_size_t;
#define __BIT_TYPES_DEFINED__
typedef signed char int8_t;
typedef unsigned char u_int8_t;
-typedef unsigned char uint8_t;
+typedef unsigned char uint8_t;
typedef short int16_t;
typedef unsigned short u_int16_t;
-typedef unsigned short uint16_t;
+typedef unsigned short uint16_t;
typedef int int32_t;
typedef unsigned int u_int32_t;
-typedef unsigned int uint32_t;
+typedef unsigned int uint32_t;
/* LONGLONG */
typedef long long int64_t;
/* LONGLONG */
typedef unsigned long long u_int64_t;
/* LONGLONG */
-typedef unsigned long long uint64_t;
+typedef unsigned long long uint64_t;
typedef int32_t register_t;
diff --git a/sys/arch/mips/include/types.h b/sys/arch/mips/include/types.h
index d9abac1aece..a0cebe1fd07 100644
--- a/sys/arch/mips/include/types.h
+++ b/sys/arch/mips/include/types.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: types.h,v 1.4 1999/01/07 23:39:01 millert Exp $ */
+/* $OpenBSD: types.h,v 1.5 1999/01/08 03:04:08 millert Exp $ */
/*-
* Copyright (c) 1992, 1993
@@ -63,19 +63,19 @@ typedef unsigned long vm_size_t;
#define __BIT_TYPES_DEFINED__
typedef __signed char int8_t;
typedef unsigned char u_int8_t;
-typedef unsigned char uint8_t;
+typedef unsigned char uint8_t;
typedef short int16_t;
typedef unsigned short u_int16_t;
-typedef unsigned short uint16_t;
+typedef unsigned short uint16_t;
typedef int int32_t;
typedef unsigned int u_int32_t;
-typedef unsigned int uint32_t;
+typedef unsigned int uint32_t;
/* LONGLONG */
typedef long long int64_t;
/* LONGLONG */
typedef unsigned long long u_int64_t;
/* LONGLONG */
-typedef unsigned long long uint64_t;
+typedef unsigned long long uint64_t;
typedef int32_t register_t;
diff --git a/sys/arch/mvme88k/include/types.h b/sys/arch/mvme88k/include/types.h
index 52892432f3f..b2d072c6c45 100644
--- a/sys/arch/mvme88k/include/types.h
+++ b/sys/arch/mvme88k/include/types.h
@@ -1,4 +1,5 @@
/* $NetBSD: types.h,v 1.7 1995/07/05 17:46:11 pk Exp $ */
+/* $OpenBSD: types.h,v 1.6 1999/01/08 03:04:08 millert Exp $ */
/*
* Copyright (c) 1992, 1993
@@ -69,16 +70,16 @@ typedef unsigned long vm_size_t;
#define __BIT_TYPES_DEFINED__
typedef __signed char int8_t;
typedef unsigned char u_int8_t;
-typedef unsigned char uint8_t;
+typedef unsigned char uint8_t;
typedef short int16_t;
typedef unsigned short u_int16_t;
-typedef unsigned short uint16_t;
+typedef unsigned short uint16_t;
typedef int int32_t;
typedef unsigned int u_int32_t;
-typedef unsigned int uint32_t;
+typedef unsigned int uint32_t;
typedef long long int64_t;
typedef unsigned long long u_int64_t;
-typedef unsigned long long uint64_t;
+typedef unsigned long long uint64_t;
typedef int32_t register_t;
diff --git a/sys/arch/pc532/include/types.h b/sys/arch/pc532/include/types.h
index ff4571ce8b5..099e0af4487 100644
--- a/sys/arch/pc532/include/types.h
+++ b/sys/arch/pc532/include/types.h
@@ -1,4 +1,5 @@
/* $NetBSD: types.h,v 1.12 1995/12/09 04:41:41 mycroft Exp $ */
+/* $OpenBSD: types.h,v 1.5 1999/01/08 03:04:08 millert Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@@ -60,19 +61,19 @@ typedef unsigned long vm_size_t;
#define __BIT_TYPES_DEFINED__
typedef __signed char int8_t;
typedef unsigned char u_int8_t;
-typedef unsigned char uint8_t;
+typedef unsigned char uint8_t;
typedef short int16_t;
typedef unsigned short u_int16_t;
-typedef unsigned short uint16_t;
+typedef unsigned short uint16_t;
typedef int int32_t;
typedef unsigned int u_int32_t;
-typedef unsigned int uint32_t;
+typedef unsigned int uint32_t;
/* LONGLONG */
typedef long long int64_t;
/* LONGLONG */
typedef unsigned long long u_int64_t;
/* LONGLONG */
-typedef unsigned long long uint64_t;
+typedef unsigned long long uint64_t;
typedef int32_t register_t;
diff --git a/sys/arch/powerpc/include/types.h b/sys/arch/powerpc/include/types.h
index ea14627bc68..42e4b3f55f1 100644
--- a/sys/arch/powerpc/include/types.h
+++ b/sys/arch/powerpc/include/types.h
@@ -1,4 +1,5 @@
/* $NetBSD: types.h,v 1.1 1996/09/30 16:34:36 ws Exp $ */
+/* $OpenBSD: types.h,v 1.7 1999/01/08 03:04:08 millert Exp $ */
/*-
* Copyright (C) 1995 Wolfgang Solfrank.
@@ -37,18 +38,18 @@
#include <sys/cdefs.h>
#define __BIT_TYPES_DEFINED__
-typedef signed char int8_t;
-typedef unsigned char u_int8_t;
-typedef unsigned char uint8_t;
-typedef short int16_t;
+typedef signed char int8_t;
+typedef unsigned char u_int8_t;
+typedef unsigned char uint8_t;
+typedef short int16_t;
typedef unsigned short u_int16_t;
-typedef unsigned short uint16_t;
-typedef int int32_t;
+typedef unsigned short uint16_t;
+typedef int int32_t;
typedef unsigned int u_int32_t;
-typedef unsigned int uint32_t;
-typedef long long int64_t;
+typedef unsigned int uint32_t;
+typedef long long int64_t;
typedef unsigned long long u_int64_t;
-typedef unsigned long long uint64_t;
+typedef unsigned long long uint64_t;
typedef u_int32_t register_t;
diff --git a/sys/arch/sparc/include/types.h b/sys/arch/sparc/include/types.h
index c7d8b13187f..56aec08c9ba 100644
--- a/sys/arch/sparc/include/types.h
+++ b/sys/arch/sparc/include/types.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: types.h,v 1.6 1999/01/07 23:39:02 millert Exp $ */
+/* $OpenBSD: types.h,v 1.7 1999/01/08 03:04:08 millert Exp $ */
/* $NetBSD: types.h,v 1.11 1996/12/10 23:19:38 pk Exp $ */
/*
@@ -70,16 +70,16 @@ typedef unsigned long vm_size_t;
#define __BIT_TYPES_DEFINED__
typedef __signed char int8_t;
typedef unsigned char u_int8_t;
-typedef unsigned char uint8_t;
+typedef unsigned char uint8_t;
typedef short int16_t;
typedef unsigned short u_int16_t;
-typedef unsigned short uint16_t;
+typedef unsigned short uint16_t;
typedef int int32_t;
typedef unsigned int u_int32_t;
-typedef unsigned int uint32_t;
+typedef unsigned int uint32_t;
typedef long long int64_t;
typedef unsigned long long u_int64_t;
-typedef unsigned long long uint64_t;
+typedef unsigned long long uint64_t;
typedef int32_t register_t;
diff --git a/sys/arch/vax/include/types.h b/sys/arch/vax/include/types.h
index feef5fb44cd..703cc497aed 100644
--- a/sys/arch/vax/include/types.h
+++ b/sys/arch/vax/include/types.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: types.h,v 1.8 1999/01/07 23:39:02 millert Exp $ */
+/* $OpenBSD: types.h,v 1.9 1999/01/08 03:04:09 millert Exp $ */
/* $NetBSD: types.h,v 1.10 1996/12/05 00:14:00 cgd Exp $ */
/*-
@@ -62,16 +62,16 @@ typedef unsigned long vm_size_t;
#define __BIT_TYPES_DEFINED__
typedef __signed char int8_t;
typedef unsigned char u_int8_t;
-typedef unsigned char uint8_t;
+typedef unsigned char uint8_t;
typedef short int16_t;
typedef unsigned short u_int16_t;
-typedef unsigned short uint16_t;
+typedef unsigned short uint16_t;
typedef int int32_t;
typedef unsigned int u_int32_t;
-typedef unsigned int uint32_t;
+typedef unsigned int uint32_t;
typedef long long int64_t;
typedef unsigned long long u_int64_t;
-typedef unsigned long long uint64_t;
+typedef unsigned long long uint64_t;
typedef int32_t register_t;
diff --git a/sys/arch/wgrisc/include/types.h b/sys/arch/wgrisc/include/types.h
index 83ec02c19d0..e5120d58e84 100644
--- a/sys/arch/wgrisc/include/types.h
+++ b/sys/arch/wgrisc/include/types.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: types.h,v 1.2 1999/01/07 23:39:03 millert Exp $ */
+/* $OpenBSD: types.h,v 1.3 1999/01/08 03:04:09 millert Exp $ */
/* $NetBSD: types.h,v 1.10 1995/07/06 03:39:43 cgd Exp $ */
/*-
@@ -64,19 +64,19 @@ typedef unsigned long vm_size_t;
#define __BIT_TYPES_DEFINED__
typedef __signed char int8_t;
typedef unsigned char u_int8_t;
-typedef unsigned char uint8_t;
+typedef unsigned char uint8_t;
typedef short int16_t;
typedef unsigned short u_int16_t;
-typedef unsigned short uint16_t;
+typedef unsigned short uint16_t;
typedef int int32_t;
typedef unsigned int u_int32_t;
-typedef unsigned int uint32_t;
+typedef unsigned int uint32_t;
/* LONGLONG */
typedef long long int64_t;
/* LONGLONG */
typedef unsigned long long u_int64_t;
/* LONGLONG */
-typedef unsigned long long uint64_t;
+typedef unsigned long long uint64_t;
typedef int32_t register_t;