Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/newlib
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2001-02-15 09:42:35 +0300
committerChristopher Faylor <me@cgf.cx>2001-02-15 09:42:35 +0300
commitb24ee7499c9b6a76204615ea57ec409aa962628b (patch)
tree62b8f15fb06ca2990f9ba73946dbc28aed59e565 /newlib
parentab4745dcb21ead97ebc469f93609a0b4a451f778 (diff)
* libc/include/sys/signal.h: Always include sys/types.h under Cygwin.
Diffstat (limited to 'newlib')
-rw-r--r--newlib/ChangeLog4
-rw-r--r--newlib/libc/include/sys/signal.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog
index 879423d77..dc820c8a4 100644
--- a/newlib/ChangeLog
+++ b/newlib/ChangeLog
@@ -1,3 +1,7 @@
+Thu Feb 15 01:39:51 2001 Christopher Faylor <cgf@cygnus.com>
+
+ * libc/include/sys/signal.h: Always include sys/types.h under Cygwin.
+
2001-02-14 Kazuhiro Fujieda <fujieda@jaist.ac.jp>
* libc/include/stdlib.h: Add declarations of rand48 functions and
diff --git a/newlib/libc/include/sys/signal.h b/newlib/libc/include/sys/signal.h
index e590ae38c..53987afc3 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