Replace __signed by signed.

The signed keyword is an integral part of the C syntax. There's no need
to use __signed.
This commit is contained in:
Ed Schouten 2011-12-13 13:38:03 +00:00
parent f6ab8089c6
commit 53627e400f
8 changed files with 11 additions and 11 deletions

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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

View File

@ -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;

View File

@ -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;