This is the mail archive of the newlib@sources.redhat.com mailing list for the newlib project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] types.h (int8_t): Changed from char to signed char.


Has the following patch made it in?

Putting bad etiquette aside, is there a 1.11.1 release around the corner?

Cheers,
Shaun


2003-08-20  Shaun Jackman  <sjackman@pathwayconnect.com>

	* newlib/libc/include/sys/types.h (int8_t): Changed from char to
	signed char.


--- ./newlib-1.11.0/newlib/libc/include/sys/types.h-	2003-08-20 12:32:41.000000000 -0600
+++ ./newlib-1.11.0/newlib/libc/include/sys/types.h	2003-08-20 12:32:46.000000000 -0600
@@ -132,7 +132,7 @@
 
 #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;



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]