diff options
author | Christopher Faylor <me@cgf.cx> | 2006-08-19 16:13:23 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2006-08-19 16:13:23 +0000 |
commit | a0922fcb048fb8c4c1cc59db5740f1e599287d16 (patch) | |
tree | 9fe6f0c62b6a316939309d93f1ab140ff3a31168 | |
parent | 84a7940382b1c6ced4a3898145153e5a7dd541df (diff) | |
download | cygnal-a0922fcb048fb8c4c1cc59db5740f1e599287d16.tar.gz cygnal-a0922fcb048fb8c4c1cc59db5740f1e599287d16.tar.bz2 cygnal-a0922fcb048fb8c4c1cc59db5740f1e599287d16.zip |
* sys/types.h: Correct syntax error caused by missing '\' on #ifdef line.
-rw-r--r-- | newlib/ChangeLog | 5 | ||||
-rw-r--r-- | newlib/libc/include/sys/types.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index 5ddb8f08f..9e068c8a3 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,8 @@ +2006-08-19 Ramana Radhakrishnan <ramana.r@gmail.com> + + * sys/types.h: Correct syntax error caused by missing '\' on #ifdef + line. + 2006-08-17 Brian Ford <Brian.Ford@FlightSafety.com> * libc/time/gmtime.c: Correct man page; clock is not a diff --git a/newlib/libc/include/sys/types.h b/newlib/libc/include/sys/types.h index 7de48b1e9..70d919a46 100644 --- a/newlib/libc/include/sys/types.h +++ b/newlib/libc/include/sys/types.h @@ -126,7 +126,7 @@ typedef long daddr_t; typedef char * caddr_t; #ifndef __CYGWIN__ -#if defined(__MS_types__) || defined(__rtems__) || +#if defined(__MS_types__) || defined(__rtems__) || \ defined(__sparc__) || defined(__SPU__) typedef unsigned long ino_t; #else |