diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2003-01-16 22:37:54 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2003-01-16 22:37:54 +0000 |
commit | c3e92877a95d86163826fe1b5ad9a943a4989542 (patch) | |
tree | 47a20f26e9d2c6713d8ca68bb4952008819d961d /newlib/libc/include/machine | |
parent | 92febe6b7ac8c46c3a9281a0ad691ced9ac6a361 (diff) | |
download | cygnal-c3e92877a95d86163826fe1b5ad9a943a4989542.tar.gz cygnal-c3e92877a95d86163826fe1b5ad9a943a4989542.tar.bz2 cygnal-c3e92877a95d86163826fe1b5ad9a943a4989542.zip |
2003-01-16 Joel Sherrill <joel@OARcorp.com>
* libc/sys/rtems/include/limits.h, libc/sys/rtems/sys/param.h,
libc/sys/rtems/sys/syslimits.h: Update to be in sync with what
constants are defined in each file in the shared versions in
libc/include.
* libc/sys/rtems/crt0.c: Define extra symbols on SH and HP-PA to
autoconf can link programs.
* libc/include/machine/types.h: Explicitly specify signed on
intXX_t types to ensure they are signed.
Diffstat (limited to 'newlib/libc/include/machine')
-rw-r--r-- | newlib/libc/include/machine/types.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/newlib/libc/include/machine/types.h b/newlib/libc/include/machine/types.h index ccc847274..b573336b7 100644 --- a/newlib/libc/include/machine/types.h +++ b/newlib/libc/include/machine/types.h @@ -8,14 +8,14 @@ */ #if defined(__rtems__) -typedef long long int64_t; +typedef signed long long int64_t; #if defined( __h8300__) -typedef long int32_t; +typedef signed long int32_t; #else -typedef int int32_t; +typedef signed int int32_t; #endif -typedef short int16_t; -typedef char int8_t; +typedef signed short int16_t; +typedef signed char int8_t; typedef unsigned long long u_int64_t; #if defined( __h8300__) |