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/signal.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/signal.h')
-rw-r--r-- | newlib/libc/include/sys/signal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/include/sys/signal.h b/newlib/libc/include/sys/signal.h index 00d25ead3..4f4119937 100644 --- a/newlib/libc/include/sys/signal.h +++ b/newlib/libc/include/sys/signal.h @@ -31,7 +31,7 @@ struct sigaction int sigprocmask (int __how, const sigset_t *__a, sigset_t *__b); /* protos for functions found in winsup sources */ -#if defined(__CYGWIN32__) +#if defined(__CYGWIN__) #undef sigaddset #undef sigemptyset /* The first argument to kill should be pid_t. Right now @@ -86,7 +86,7 @@ int _EXFUN(sigpause, (int)); #define SIGUSR1 18 #define SIGUSR2 19 #define NSIG 20 -#elif defined(__CYGWIN32__) /* BSD signals symantics */ +#elif defined(__CYGWIN__) /* BSD signals symantics */ #define SIGHUP 1 /* hangup */ #define SIGINT 2 /* interrupt */ #define SIGQUIT 3 /* quit */ |