diff options
Diffstat (limited to 'sys/arch/m88k')
-rw-r--r-- | sys/arch/m88k/include/_types.h | 4 |
1 files changed, 2 insertions, 2 deletions
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; |