diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2005-10-14 20:01:55 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2005-10-14 20:01:55 +0000 |
commit | e9154015a09ac328f94c126e3253c9ebcff7b004 (patch) | |
tree | 95f5c1060cd63bd89532c52f541a84a9107f3379 /newlib/libc/sys/linux | |
parent | 1a8696985f9850ebbeccde41d5afb2e17bc6d1bc (diff) | |
download | cygnal-e9154015a09ac328f94c126e3253c9ebcff7b004.tar.gz cygnal-e9154015a09ac328f94c126e3253c9ebcff7b004.tar.bz2 cygnal-e9154015a09ac328f94c126e3253c9ebcff7b004.zip |
2005-10-14 Jeff Johnston <jjohnstn@redhat.com>
* libc/sys/linux/sys/types.h (int8_t): Add type.
Diffstat (limited to 'newlib/libc/sys/linux')
-rw-r--r-- | newlib/libc/sys/linux/sys/types.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/newlib/libc/sys/linux/sys/types.h b/newlib/libc/sys/linux/sys/types.h index 47f49087a..1401b0598 100644 --- a/newlib/libc/sys/linux/sys/types.h +++ b/newlib/libc/sys/linux/sys/types.h @@ -166,6 +166,7 @@ typedef __uint8_t u_int8_t; typedef __uint16_t u_int16_t; typedef __uint32_t u_int32_t; typedef __uint64_t u_int64_t; +typedef __int8_t int8_t; typedef __int16_t int16_t; typedef __int32_t int32_t; typedef __int64_t int64_t; |