diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2014-03-19 05:14:14 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2014-03-19 05:14:14 +0000 |
commit | f80ca3bd008c20a575b8a521d0c9a776594d660a (patch) | |
tree | 206dc2a2ef2223e7691212e7c0c9ade06ec44fb2 /sys/arch/vax/include | |
parent | 4742c2b57e4ad2e89fcce97609235d053bb31510 (diff) |
It's safe to assumed 'signed' exists
Diffstat (limited to 'sys/arch/vax/include')
-rw-r--r-- | sys/arch/vax/include/_types.h | 4 |
1 files changed, 2 insertions, 2 deletions
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; |