summaryrefslogtreecommitdiff
path: root/sys/arch/hppa64
diff options
context:
space:
mode:
authorPhilip Guenther <guenther@cvs.openbsd.org>2014-03-19 05:14:14 +0000
committerPhilip Guenther <guenther@cvs.openbsd.org>2014-03-19 05:14:14 +0000
commitf80ca3bd008c20a575b8a521d0c9a776594d660a (patch)
tree206dc2a2ef2223e7691212e7c0c9ade06ec44fb2 /sys/arch/hppa64
parent4742c2b57e4ad2e89fcce97609235d053bb31510 (diff)
It's safe to assumed 'signed' exists
Diffstat (limited to 'sys/arch/hppa64')
-rw-r--r--sys/arch/hppa64/include/_types.h4
1 files changed, 2 insertions, 2 deletions
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;