diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2002-04-13 10:10:03 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2002-04-13 10:10:03 +0000 |
commit | 0cc261b11d5074e10f728381e9b25cf8c9ed4fa9 (patch) | |
tree | f58e5141c3052644eb20a7fe89fff69cf1829929 /newlib | |
parent | 26116455c40b950000ef3033393c678733c560aa (diff) | |
download | cygnal-0cc261b11d5074e10f728381e9b25cf8c9ed4fa9.tar.gz cygnal-0cc261b11d5074e10f728381e9b25cf8c9ed4fa9.tar.bz2 cygnal-0cc261b11d5074e10f728381e9b25cf8c9ed4fa9.zip |
* libc/include/sys/config.h: Include limits.h.
Diffstat (limited to 'newlib')
-rw-r--r-- | newlib/ChangeLog | 4 | ||||
-rw-r--r-- | newlib/libc/include/sys/config.h | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index 7d96109ae..054600127 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,7 @@ +2002-04-13 Alexandre Oliva <aoliva@redhat.com> + + * libc/include/sys/config.h: Include limits.h. + 2002-04-12 Eric Norum <eric.norum@usask.com> * libc/sys/rtems/crt0.c (rtems_gxx_mutex_init): Dummy diff --git a/newlib/libc/include/sys/config.h b/newlib/libc/include/sys/config.h index 60c6d89c0..b5a95bfa2 100644 --- a/newlib/libc/include/sys/config.h +++ b/newlib/libc/include/sys/config.h @@ -129,6 +129,8 @@ typedef short int __int16_t; typedef unsigned short int __uint16_t; +#include <limits.h> + #if INT_MAX == 32767 typedef long int __int32_t; typedef unsigned long int __uint32_t; |