summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordrahn <drahn@openbsd.org>2004-05-06 15:53:39 +0000
committerdrahn <drahn@openbsd.org>2004-05-06 15:53:39 +0000
commit43451e429ac449d7d353b0e1a8d18e17e95a9b20 (patch)
tree4b1b3d36e365b40ff56e0bdd9ceb154d78b2208e
parentactually reset p->auth_established to 0 in pfkey_[md5sig|ipsec]_remove (diff)
downloadwireguard-openbsd-43451e429ac449d7d353b0e1a8d18e17e95a9b20.tar.xz
wireguard-openbsd-43451e429ac449d7d353b0e1a8d18e17e95a9b20.zip
ARM is yet another char == unsigned char platform. add the define to make
the header files do the right thing, pointed out by miod@
-rw-r--r--sys/arch/arm/include/internal_types.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/arch/arm/include/internal_types.h b/sys/arch/arm/include/internal_types.h
index 96546cfacb9..7e610b0ec4b 100644
--- a/sys/arch/arm/include/internal_types.h
+++ b/sys/arch/arm/include/internal_types.h
@@ -1,6 +1,10 @@
-/* $OpenBSD: internal_types.h,v 1.1 2004/02/01 05:09:49 drahn Exp $ */
+/* $OpenBSD: internal_types.h,v 1.2 2004/05/06 15:53:39 drahn Exp $ */
/* Public domain */
#ifndef _ARM_INTERNAL_TYPES_H_
#define _ARM_INTERNAL_TYPES_H_
+#ifdef __CHAR_UNSIGNED__
+#define __machine_has_unsigned_chars
+#endif
+
#endif