From a06e1a5823770b1398d49fd60802e15caa632eef Mon Sep 17 00:00:00 2001 From: Jeroen Ruigrok/asmodai Date: Sun, 10 Aug 2003 19:10:42 +0000 Subject: [PATCH] Change __signed to signed. The former is a very GCC specific use and hardly used. Approved by: Matt Dillon --- sys/i386/include/ansi.h | 4 ++-- sys/platform/pc32/include/ansi.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sys/i386/include/ansi.h b/sys/i386/include/ansi.h index a96199cfc4..5973295189 100644 --- a/sys/i386/include/ansi.h +++ b/sys/i386/include/ansi.h @@ -32,7 +32,7 @@ * * @(#)ansi.h 8.2 (Berkeley) 1/4/94 * $FreeBSD: src/sys/i386/include/ansi.h,v 1.18.2.4 2001/06/03 17:15:54 obrien Exp $ - * $DragonFly: src/sys/i386/include/Attic/ansi.h,v 1.2 2003/06/17 04:28:35 dillon Exp $ + * $DragonFly: src/sys/i386/include/Attic/ansi.h,v 1.3 2003/08/10 19:10:42 asmodai Exp $ */ #ifndef _MACHINE_ANSI_H_ @@ -128,7 +128,7 @@ typedef unsigned long long __uint64_t; * Internal names for basic integral types. Omit the typedef if * not possible for a machine/compiler combination. */ -typedef __signed char __int8_t; +typedef signed char __int8_t; typedef unsigned char __uint8_t; typedef short __int16_t; typedef unsigned short __uint16_t; diff --git a/sys/platform/pc32/include/ansi.h b/sys/platform/pc32/include/ansi.h index 5458bd10b9..0810dfc991 100644 --- a/sys/platform/pc32/include/ansi.h +++ b/sys/platform/pc32/include/ansi.h @@ -32,7 +32,7 @@ * * @(#)ansi.h 8.2 (Berkeley) 1/4/94 * $FreeBSD: src/sys/i386/include/ansi.h,v 1.18.2.4 2001/06/03 17:15:54 obrien Exp $ - * $DragonFly: src/sys/platform/pc32/include/Attic/ansi.h,v 1.2 2003/06/17 04:28:35 dillon Exp $ + * $DragonFly: src/sys/platform/pc32/include/Attic/ansi.h,v 1.3 2003/08/10 19:10:42 asmodai Exp $ */ #ifndef _MACHINE_ANSI_H_ @@ -128,7 +128,7 @@ typedef unsigned long long __uint64_t; * Internal names for basic integral types. Omit the typedef if * not possible for a machine/compiler combination. */ -typedef __signed char __int8_t; +typedef signed char __int8_t; typedef unsigned char __uint8_t; typedef short __int16_t; typedef unsigned short __uint16_t; -- 2.41.0