diff options
author | Thomas Fitzsimmons <fitzsim@redhat.com> | 2001-12-19 03:03:43 +0000 |
---|---|---|
committer | Thomas Fitzsimmons <fitzsim@redhat.com> | 2001-12-19 03:03:43 +0000 |
commit | 60565ed65755b5d6803dd5eb235973031bdf9d5c (patch) | |
tree | 6b880a8506a1757a3c71abff3e8ddf7ff2c1f217 /newlib/libc/include | |
parent | 08e857b49a2fe0726bd8123f0c6a195cf58ea320 (diff) | |
download | cygnal-60565ed65755b5d6803dd5eb235973031bdf9d5c.tar.gz cygnal-60565ed65755b5d6803dd5eb235973031bdf9d5c.tar.bz2 cygnal-60565ed65755b5d6803dd5eb235973031bdf9d5c.zip |
2001-12-18 Thomas Fitzsimmons <fitzsim@redhat.com>
* libc/machine/i386/f_*: Move to libm/machine/i386.
2001-12-18 Joel Sherrill <joel@OARcorp.com>
* libm/machine/Makefile.am: Add dummy doc stub so
"make info" works.
2001-12-17 Joel Sherrill <joel@OARcorp.com>
* libc/include/sys/types.h (ino_t): RTEMS uses long also.
Diffstat (limited to 'newlib/libc/include')
-rw-r--r-- | newlib/libc/include/sys/types.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/include/sys/types.h b/newlib/libc/include/sys/types.h index 9c932a62c..96d25c4a0 100644 --- a/newlib/libc/include/sys/types.h +++ b/newlib/libc/include/sys/types.h @@ -87,7 +87,7 @@ struct itimerspec { typedef long daddr_t; typedef char * caddr_t; -#ifdef __MS_types__ +#if defined(__MS_types__) || defined(__rtems__) typedef unsigned long ino_t; #else #ifdef __sparc__ @@ -218,7 +218,7 @@ typedef _TIMER_T_ timer_t; #define __timer_t_defined #endif -#ifdef __CYGWIN__ +#if defined(__CYGWIN__) || defined(__rtems__) typedef long useconds_t; #endif |