summaryrefslogtreecommitdiff
path: root/sys/arch/mips64/include
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/mips64/include
parent4742c2b57e4ad2e89fcce97609235d053bb31510 (diff)
It's safe to assumed 'signed' exists
Diffstat (limited to 'sys/arch/mips64/include')
-rw-r--r--sys/arch/mips64/include/_types.h4
1 files changed, 2 insertions, 2 deletions
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;