* sys/types.h: Correct syntax error caused by missing '\' on #ifdef line.
This commit is contained in:
parent
84a7940382
commit
a0922fcb04
|
@ -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>
|
2006-08-17 Brian Ford <Brian.Ford@FlightSafety.com>
|
||||||
|
|
||||||
* libc/time/gmtime.c: Correct man page; clock is not a
|
* libc/time/gmtime.c: Correct man page; clock is not a
|
||||||
|
|
|
@ -126,7 +126,7 @@ typedef long daddr_t;
|
||||||
typedef char * caddr_t;
|
typedef char * caddr_t;
|
||||||
|
|
||||||
#ifndef __CYGWIN__
|
#ifndef __CYGWIN__
|
||||||
#if defined(__MS_types__) || defined(__rtems__) ||
|
#if defined(__MS_types__) || defined(__rtems__) || \
|
||||||
defined(__sparc__) || defined(__SPU__)
|
defined(__sparc__) || defined(__SPU__)
|
||||||
typedef unsigned long ino_t;
|
typedef unsigned long ino_t;
|
||||||
#else
|
#else
|
||||||
|
|
Loading…
Reference in New Issue