diff options
author | Christopher Faylor <me@cgf.cx> | 2000-05-30 17:18:05 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-05-30 17:18:05 +0000 |
commit | d2dd57657cb7aa40e7020c0b825345647d4514aa (patch) | |
tree | 91eb96cabe8476d07c1ebc5d535ee031427d9b95 /newlib/libc/include/sys/unistd.h | |
parent | ec50441f4a994f6c320de61bacea1cf19412cc52 (diff) | |
download | cygnal-d2dd57657cb7aa40e7020c0b825345647d4514aa.tar.gz cygnal-d2dd57657cb7aa40e7020c0b825345647d4514aa.tar.bz2 cygnal-d2dd57657cb7aa40e7020c0b825345647d4514aa.zip |
* libc/include/ctype.h: __CYGWIN32__ -> __CYGWIN__
* libc/include/malloc.h: Ditto.
* libc/include/process.h: Ditto.
* libc/include/stdio.h: Ditto.
* libc/include/stdlib.h: Ditto.
* libc/include/time.h: Ditto.
* libc/include/machine/setjmp.h: Ditto.
* libc/include/sys/errno.h: Ditto.
* libc/include/sys/signal.h: Ditto.
* libc/include/sys/stat.h: Ditto.
* libc/include/sys/time.h: Ditto.
* libc/include/sys/unistd.h: Ditto.
* libc/include/string.h: Ditto. strsignal should return a const char *.
Diffstat (limited to 'newlib/libc/include/sys/unistd.h')
-rw-r--r-- | newlib/libc/include/sys/unistd.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/newlib/libc/include/sys/unistd.h b/newlib/libc/include/sys/unistd.h index 2b8c6a0f0..1986edea6 100644 --- a/newlib/libc/include/sys/unistd.h +++ b/newlib/libc/include/sys/unistd.h @@ -83,7 +83,7 @@ void * _EXFUN(_sbrk, (size_t __incr)); int _EXFUN(_unlink, (const char *__path )); int _EXFUN(_write, (int __fildes, const void *__buf, size_t __nbyte )); -#if defined(__CYGWIN32__) || defined(__rtems__) +#if defined(__CYGWIN__) || defined(__rtems__) unsigned _EXFUN(usleep, (unsigned int __useconds)); int _EXFUN(ftruncate, (int __fd, off_t __length)); int _EXFUN(truncate, (const char *, off_t __length)); @@ -125,7 +125,7 @@ int _EXFUN(symlink, (const char *__name1, const char *__name2)); #endif #endif -#ifdef __CYGWIN32__ +#ifdef __CYGWIN__ # define _POSIX_JOB_CONTROL 1 # define _POSIX_SAVED_IDS 0 # define _POSIX_VERSION 199009L @@ -166,7 +166,7 @@ long _EXFUN(sysconf, (int __name)); # endif /* _POSIX_SOURCE */ /* FIXME: This is temporary until winsup gets sorted out. */ -#ifdef __CYGWIN32__ +#ifdef __CYGWIN__ #define MAXPATHLEN (260 - 1 /* NUL */) #else # define MAXPATHLEN 1024 |