diff options
-rw-r--r-- | sys/arch/alpha/include/_types.h | 4 | ||||
-rw-r--r-- | sys/arch/amd64/include/_types.h | 4 | ||||
-rw-r--r-- | sys/arch/arm/include/_types.h | 4 | ||||
-rw-r--r-- | sys/arch/hppa/include/_types.h | 4 | ||||
-rw-r--r-- | sys/arch/hppa64/include/_types.h | 4 | ||||
-rw-r--r-- | sys/arch/i386/include/_types.h | 4 | ||||
-rw-r--r-- | sys/arch/ia64/include/_types.h | 4 | ||||
-rw-r--r-- | sys/arch/m88k/include/_types.h | 4 | ||||
-rw-r--r-- | sys/arch/mips64/include/_types.h | 4 | ||||
-rw-r--r-- | sys/arch/powerpc/include/_types.h | 4 | ||||
-rw-r--r-- | sys/arch/sh/include/_types.h | 4 | ||||
-rw-r--r-- | sys/arch/sparc/include/_types.h | 4 | ||||
-rw-r--r-- | sys/arch/sparc64/include/_types.h | 4 | ||||
-rw-r--r-- | sys/arch/vax/include/_types.h | 4 |
14 files changed, 28 insertions, 28 deletions
diff --git a/sys/arch/alpha/include/_types.h b/sys/arch/alpha/include/_types.h index 987bd3650c4..fe2245ad412 100644 --- a/sys/arch/alpha/include/_types.h +++ b/sys/arch/alpha/include/_types.h @@ -1,4 +1,4 @@ -/* $OpenBSD: _types.h,v 1.21 2013/12/18 16:41:01 deraadt Exp $ */ +/* $OpenBSD: _types.h,v 1.22 2014/03/19 05:14:12 guenther Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -57,7 +57,7 @@ typedef struct label_t { #define _ALIGNED_POINTER(p,t) ((((unsigned long)(p)) & (sizeof(t) - 1)) == 0) /* 7.18.1.1 Exact-width integer types */ -typedef __signed char __int8_t; +typedef signed char __int8_t; typedef unsigned char __uint8_t; typedef short __int16_t; typedef unsigned short __uint16_t; diff --git a/sys/arch/amd64/include/_types.h b/sys/arch/amd64/include/_types.h index 7f6fe666497..074e6655d8b 100644 --- a/sys/arch/amd64/include/_types.h +++ b/sys/arch/amd64/include/_types.h @@ -1,4 +1,4 @@ -/* $OpenBSD: _types.h,v 1.14 2013/12/18 16:41:01 deraadt Exp $ */ +/* $OpenBSD: _types.h,v 1.15 2014/03/19 05:14:13 guenther Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -57,7 +57,7 @@ typedef struct label_t { #endif /* 7.18.1.1 Exact-width integer types */ -typedef __signed char __int8_t; +typedef signed char __int8_t; typedef unsigned char __uint8_t; typedef short __int16_t; typedef unsigned short __uint16_t; diff --git a/sys/arch/arm/include/_types.h b/sys/arch/arm/include/_types.h index 14a3c7514a3..a1799017989 100644 --- a/sys/arch/arm/include/_types.h +++ b/sys/arch/arm/include/_types.h @@ -1,4 +1,4 @@ -/* $OpenBSD: _types.h,v 1.15 2013/12/18 16:41:01 deraadt Exp $ */ +/* $OpenBSD: _types.h,v 1.16 2014/03/19 05:14:13 guenther Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -57,7 +57,7 @@ typedef struct label_t { #define _ALIGNED_POINTER(p,t) ((((unsigned long)(p)) & (sizeof(t) - 1)) == 0) /* 7.18.1.1 Exact-width integer types */ -typedef __signed char __int8_t; +typedef signed char __int8_t; typedef unsigned char __uint8_t; typedef short __int16_t; typedef unsigned short __uint16_t; diff --git a/sys/arch/hppa/include/_types.h b/sys/arch/hppa/include/_types.h index 981da258b25..646848283df 100644 --- a/sys/arch/hppa/include/_types.h +++ b/sys/arch/hppa/include/_types.h @@ -1,4 +1,4 @@ -/* $OpenBSD: _types.h,v 1.23 2013/12/18 16:41:01 deraadt Exp $ */ +/* $OpenBSD: _types.h,v 1.24 2014/03/19 05:14:13 guenther Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -61,7 +61,7 @@ typedef unsigned long hppa_spa_t; /* XXX */ typedef unsigned int pa_space_t; /* XXX */ /* 7.18.1.1 Exact-width integer types */ -typedef __signed char __int8_t; +typedef signed char __int8_t; typedef unsigned char __uint8_t; typedef short __int16_t; typedef unsigned short __uint16_t; diff --git a/sys/arch/hppa64/include/_types.h b/sys/arch/hppa64/include/_types.h index 6388a389f82..dced1f7e7de 100644 --- a/sys/arch/hppa64/include/_types.h +++ b/sys/arch/hppa64/include/_types.h @@ -1,4 +1,4 @@ -/* $OpenBSD: _types.h,v 1.16 2013/12/18 16:41:01 deraadt Exp $ */ +/* $OpenBSD: _types.h,v 1.17 2014/03/19 05:14:13 guenther Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -61,7 +61,7 @@ typedef unsigned long hppa_spa_t; /* XXX */ typedef unsigned int pa_space_t; /* XXX */ /* 7.18.1.1 Exact-width integer types */ -typedef __signed char __int8_t; +typedef signed char __int8_t; typedef unsigned char __uint8_t; typedef short __int16_t; typedef unsigned short __uint16_t; diff --git a/sys/arch/i386/include/_types.h b/sys/arch/i386/include/_types.h index 02684eabf67..e307406668b 100644 --- a/sys/arch/i386/include/_types.h +++ b/sys/arch/i386/include/_types.h @@ -1,4 +1,4 @@ -/* $OpenBSD: _types.h,v 1.20 2013/12/18 16:41:01 deraadt Exp $ */ +/* $OpenBSD: _types.h,v 1.21 2014/03/19 05:14:13 guenther Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -57,7 +57,7 @@ typedef struct label_t { #endif /* 7.18.1.1 Exact-width integer types */ -typedef __signed char __int8_t; +typedef signed char __int8_t; typedef unsigned char __uint8_t; typedef short __int16_t; typedef unsigned short __uint16_t; diff --git a/sys/arch/ia64/include/_types.h b/sys/arch/ia64/include/_types.h index 7c8d61023cd..d14c7cda8e7 100644 --- a/sys/arch/ia64/include/_types.h +++ b/sys/arch/ia64/include/_types.h @@ -1,4 +1,4 @@ -/* $OpenBSD: _types.h,v 1.8 2013/12/18 16:41:01 deraadt Exp $ */ +/* $OpenBSD: _types.h,v 1.9 2014/03/19 05:14:13 guenther Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -58,7 +58,7 @@ typedef struct label_t { /* 7.18.1.1 Exact-width integer types */ -typedef __signed char __int8_t; +typedef signed char __int8_t; typedef unsigned char __uint8_t; typedef short __int16_t; typedef unsigned short __uint16_t; diff --git a/sys/arch/m88k/include/_types.h b/sys/arch/m88k/include/_types.h index 7303d362122..06103f3028d 100644 --- a/sys/arch/m88k/include/_types.h +++ b/sys/arch/m88k/include/_types.h @@ -1,4 +1,4 @@ -/* $OpenBSD: _types.h,v 1.15 2013/12/18 16:41:01 deraadt Exp $ */ +/* $OpenBSD: _types.h,v 1.16 2014/03/19 05:14:13 guenther Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -61,7 +61,7 @@ typedef struct label_t { #define _ALIGNED_POINTER(p,t) ((((unsigned long)(p)) & (sizeof(t) - 1)) == 0) /* 7.18.1.1 Exact-width integer types */ -typedef __signed char __int8_t; +typedef signed char __int8_t; typedef unsigned char __uint8_t; typedef short __int16_t; typedef unsigned short __uint16_t; diff --git a/sys/arch/mips64/include/_types.h b/sys/arch/mips64/include/_types.h index ed4e87c136b..923dfa1a545 100644 --- a/sys/arch/mips64/include/_types.h +++ b/sys/arch/mips64/include/_types.h @@ -1,4 +1,4 @@ -/* $OpenBSD: _types.h,v 1.18 2014/02/22 18:10:39 miod Exp $ */ +/* $OpenBSD: _types.h,v 1.19 2014/03/19 05:14:13 guenther Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -59,7 +59,7 @@ #define _MIPS_ISA_MIPS4 4 /* TFP (R1x000) */ /* 7.18.1.1 Exact-width integer types */ -typedef __signed char __int8_t; +typedef signed char __int8_t; typedef unsigned char __uint8_t; typedef short __int16_t; typedef unsigned short __uint16_t; diff --git a/sys/arch/powerpc/include/_types.h b/sys/arch/powerpc/include/_types.h index 34f54c27812..278ae4ae357 100644 --- a/sys/arch/powerpc/include/_types.h +++ b/sys/arch/powerpc/include/_types.h @@ -1,4 +1,4 @@ -/* $OpenBSD: _types.h,v 1.19 2013/12/18 16:41:01 deraadt Exp $ */ +/* $OpenBSD: _types.h,v 1.20 2014/03/19 05:14:13 guenther Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -57,7 +57,7 @@ typedef struct label_t { #define _ALIGNED_POINTER(p,t) ((((unsigned long)(p)) & (sizeof(t) - 1)) == 0) /* 7.18.1.1 Exact-width integer types */ -typedef __signed char __int8_t; +typedef signed char __int8_t; typedef unsigned char __uint8_t; typedef short __int16_t; typedef unsigned short __uint16_t; diff --git a/sys/arch/sh/include/_types.h b/sys/arch/sh/include/_types.h index cb97ec877fe..2c5763d2b91 100644 --- a/sys/arch/sh/include/_types.h +++ b/sys/arch/sh/include/_types.h @@ -1,4 +1,4 @@ -/* $OpenBSD: _types.h,v 1.17 2013/12/18 16:41:01 deraadt Exp $ */ +/* $OpenBSD: _types.h,v 1.18 2014/03/19 05:14:13 guenther Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -57,7 +57,7 @@ typedef struct label_t { #define _ALIGNED_POINTER(p,t) ((((unsigned long)(p)) & (sizeof(t) - 1)) == 0) /* 7.18.1.1 Exact-width integer types */ -typedef __signed char __int8_t; +typedef signed char __int8_t; typedef unsigned char __uint8_t; typedef short __int16_t; typedef unsigned short __uint16_t; diff --git a/sys/arch/sparc/include/_types.h b/sys/arch/sparc/include/_types.h index 49a858acae4..217d69cd765 100644 --- a/sys/arch/sparc/include/_types.h +++ b/sys/arch/sparc/include/_types.h @@ -1,4 +1,4 @@ -/* $OpenBSD: _types.h,v 1.24 2013/12/18 16:41:01 deraadt Exp $ */ +/* $OpenBSD: _types.h,v 1.25 2014/03/19 05:14:13 guenther Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -58,7 +58,7 @@ typedef struct label_t { #define _ALIGNED_POINTER(p,t) ((((unsigned long)(p)) & (sizeof(t) - 1)) == 0) /* 7.18.1.1 Exact-width integer types */ -typedef __signed char __int8_t; +typedef signed char __int8_t; typedef unsigned char __uint8_t; typedef short __int16_t; typedef unsigned short __uint16_t; diff --git a/sys/arch/sparc64/include/_types.h b/sys/arch/sparc64/include/_types.h index c5240ec4ae4..2f2c0cd1af9 100644 --- a/sys/arch/sparc64/include/_types.h +++ b/sys/arch/sparc64/include/_types.h @@ -1,4 +1,4 @@ -/* $OpenBSD: _types.h,v 1.20 2013/12/18 16:41:01 deraadt Exp $ */ +/* $OpenBSD: _types.h,v 1.21 2014/03/19 05:14:13 guenther Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -57,7 +57,7 @@ typedef struct label_t { #define _ALIGNED_POINTER(p,t) ((((unsigned long)(p)) & (sizeof(t) - 1)) == 0) /* 7.18.1.1 Exact-width integer types */ -typedef __signed char __int8_t; +typedef signed char __int8_t; typedef unsigned char __uint8_t; typedef short __int16_t; typedef unsigned short __uint16_t; diff --git a/sys/arch/vax/include/_types.h b/sys/arch/vax/include/_types.h index 37cdcb61edc..bd1950c34f2 100644 --- a/sys/arch/vax/include/_types.h +++ b/sys/arch/vax/include/_types.h @@ -1,4 +1,4 @@ -/* $OpenBSD: _types.h,v 1.20 2013/12/18 16:41:01 deraadt Exp $ */ +/* $OpenBSD: _types.h,v 1.21 2014/03/19 05:14:13 guenther Exp $ */ /*- * Copyright (c) 1990, 1993 @@ -57,7 +57,7 @@ typedef struct label_t { #define _ALIGNED_POINTER(p,t) ((((unsigned long)(p)) & (sizeof(t) - 1)) == 0) /* 7.18.1.1 Exact-width integer types */ -typedef __signed char __int8_t; +typedef signed char __int8_t; typedef unsigned char __uint8_t; typedef short __int16_t; typedef unsigned short __uint16_t; |