From c1454b3acbc28ea629b49ea758a1ba43b6fa01ee Mon Sep 17 00:00:00 2001 From: usa Date: Wed, 28 Aug 2002 02:39:29 +0000 Subject: * win32/win32.h: define SIGINT and SIGKILL if not defined. * win32/win32.c: remove definition of SIGINT and SIGKILL. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2751 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- win32/win32.h | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'win32/win32.h') diff --git a/win32/win32.h b/win32/win32.h index c5873c62b7..b33d075e66 100644 --- a/win32/win32.h +++ b/win32/win32.h @@ -53,6 +53,7 @@ extern "C++" { #include #include #include +#include #include #include #if !defined(__BORLANDC__) @@ -273,6 +274,14 @@ extern char *rb_w32_strerror(int); #endif +#ifndef SIGINT +#define SIGINT 2 +#endif +#ifndef SIGKILL +#define SIGKILL 9 +#endif + + /* #undef va_start */ /* #undef va_end */ -- cgit v1.2.3