diff options
author | Christopher Faylor <me@cgf.cx> | 2001-02-15 06:42:35 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2001-02-15 06:42:35 +0000 |
commit | b24ee7499c9b6a76204615ea57ec409aa962628b (patch) | |
tree | 62b8f15fb06ca2990f9ba73946dbc28aed59e565 /newlib/libc/include | |
parent | ab4745dcb21ead97ebc469f93609a0b4a451f778 (diff) | |
download | newlib-b24ee7499c9b6a76204615ea57ec409aa962628b.zip newlib-b24ee7499c9b6a76204615ea57ec409aa962628b.tar.gz newlib-b24ee7499c9b6a76204615ea57ec409aa962628b.tar.bz2 |
* libc/include/sys/signal.h: Always include sys/types.h under Cygwin.
Diffstat (limited to 'newlib/libc/include')
-rw-r--r-- | newlib/libc/include/sys/signal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/include/sys/signal.h b/newlib/libc/include/sys/signal.h index e590ae3..53987af 100644 --- a/newlib/libc/include/sys/signal.h +++ b/newlib/libc/include/sys/signal.h @@ -12,7 +12,7 @@ extern "C" { /* #ifndef __STRICT_ANSI__*/ -#if defined(_POSIX_THREADS) +#if defined(_POSIX_THREADS) || defined(__CYGWIN__) #include <sys/types.h> /* for pthread data types */ #endif |