summaryrefslogtreecommitdiffstats
path: root/newlib
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2003-07-02 20:32:07 +0000
committerJeff Johnston <jjohnstn@redhat.com>2003-07-02 20:32:07 +0000
commit282eff9a6a90fed4d59196f8dced9b941ccda9af (patch)
tree7e1d2f3f88c38b5cb5dcc22b3689afafada6bd41 /newlib
parent4e989b11f32a76ac92f6c8e503751bc9ffb76fed (diff)
downloadcygnal-282eff9a6a90fed4d59196f8dced9b941ccda9af.tar.gz
cygnal-282eff9a6a90fed4d59196f8dced9b941ccda9af.tar.bz2
cygnal-282eff9a6a90fed4d59196f8dced9b941ccda9af.zip
2003-07-02 Jeff Johnston <jjohnstn@redhat.com>
* libc/include/sys/types.h (int8_t): Make signed.
Diffstat (limited to 'newlib')
-rw-r--r--newlib/ChangeLog4
-rw-r--r--newlib/libc/include/sys/types.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog
index b33fe6f19..dcf7ef163 100644
--- a/newlib/ChangeLog
+++ b/newlib/ChangeLog
@@ -1,5 +1,9 @@
2003-07-02 Jeff Johnston <jjohnstn@redhat.com>
+ * libc/include/sys/types.h (int8_t): Make signed.
+
+2003-07-02 Jeff Johnston <jjohnstn@redhat.com>
+
* libc/sys/linux/include/mqueue.h: Add include of <sys/fcntl.h>.
2003-06-27 Jose Goncalves <jose.goncalves@inov.pt>
diff --git a/newlib/libc/include/sys/types.h b/newlib/libc/include/sys/types.h
index f17379e73..238af1f50 100644
--- a/newlib/libc/include/sys/types.h
+++ b/newlib/libc/include/sys/types.h
@@ -129,7 +129,7 @@ typedef unsigned long vm_size_t;
#define __BIT_TYPES_DEFINED__
-typedef char int8_t;
+typedef signed char int8_t;
typedef unsigned char u_int8_t;
typedef short int16_t;
typedef unsigned short u_int16_t;