summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sys/amd64/include/_types.h2
-rw-r--r--sys/arm/include/_types.h2
-rw-r--r--sys/i386/include/_types.h2
-rw-r--r--sys/ia64/include/_types.h2
-rw-r--r--sys/mips/include/_types.h2
-rw-r--r--sys/ofed/include/asm/types.h8
-rw-r--r--sys/powerpc/include/_types.h2
-rw-r--r--sys/sparc64/include/_types.h2
8 files changed, 11 insertions, 11 deletions
diff --git a/sys/amd64/include/_types.h b/sys/amd64/include/_types.h
index 13dc3ea..99db9b0 100644
--- a/sys/amd64/include/_types.h
+++ b/sys/amd64/include/_types.h
@@ -48,7 +48,7 @@
/*
* Basic types upon which most other types are built.
*/
-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/arm/include/_types.h b/sys/arm/include/_types.h
index d8386f3..6e91270 100644
--- a/sys/arm/include/_types.h
+++ b/sys/arm/include/_types.h
@@ -46,7 +46,7 @@
/*
* Basic types upon which most other types are built.
*/
-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/i386/include/_types.h b/sys/i386/include/_types.h
index 3194fd6..9f5ab90 100644
--- a/sys/i386/include/_types.h
+++ b/sys/i386/include/_types.h
@@ -48,7 +48,7 @@
/*
* Basic types upon which most other types are built.
*/
-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/ia64/include/_types.h b/sys/ia64/include/_types.h
index 0c2f5cc..66ac0cc 100644
--- a/sys/ia64/include/_types.h
+++ b/sys/ia64/include/_types.h
@@ -46,7 +46,7 @@
/*
* Basic types upon which most other types are built.
*/
-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/mips/include/_types.h b/sys/mips/include/_types.h
index 2f23db6..8f09f63 100644
--- a/sys/mips/include/_types.h
+++ b/sys/mips/include/_types.h
@@ -47,7 +47,7 @@
/*
* Basic types upon which most other types are built.
*/
-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/ofed/include/asm/types.h b/sys/ofed/include/asm/types.h
index 70dd2be..5745727 100644
--- a/sys/ofed/include/asm/types.h
+++ b/sys/ofed/include/asm/types.h
@@ -30,17 +30,17 @@
typedef unsigned short umode_t;
-typedef __signed__ char __s8;
+typedef signed char __s8;
typedef unsigned char __u8;
-typedef __signed__ short __s16;
+typedef signed short __s16;
typedef unsigned short __u16;
-typedef __signed__ int __s32;
+typedef signed int __s32;
typedef unsigned int __u32;
#if defined(__GNUC__) // && !defined(__STRICT_ANSI__)
-typedef __signed__ long long __s64;
+typedef signed long long __s64;
typedef unsigned long long __u64;
#endif
diff --git a/sys/powerpc/include/_types.h b/sys/powerpc/include/_types.h
index b0b582e..331c9a2 100644
--- a/sys/powerpc/include/_types.h
+++ b/sys/powerpc/include/_types.h
@@ -46,7 +46,7 @@
/*
* Basic types upon which most other types are built.
*/
-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/sparc64/include/_types.h b/sys/sparc64/include/_types.h
index 7e993c4..5899401 100644
--- a/sys/sparc64/include/_types.h
+++ b/sys/sparc64/include/_types.h
@@ -42,7 +42,7 @@
/*
* Basic types upon which most other types are built.
*/
-typedef __signed char __int8_t;
+typedef signed char __int8_t;
typedef unsigned char __uint8_t;
typedef short __int16_t;
typedef unsigned short __uint16_t;
OpenPOWER on IntegriCloud