summaryrefslogtreecommitdiff
path: root/win32/win32.c
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-08-28 02:39:29 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-08-28 02:39:29 +0000
commitc1454b3acbc28ea629b49ea758a1ba43b6fa01ee (patch)
treeb174b12dba3fcee7dc2162d7d13df4d88b8377e9 /win32/win32.c
parenta13ebdb8364025f15352670431d1f6db34f9df30 (diff)
* 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
Diffstat (limited to 'win32/win32.c')
-rw-r--r--win32/win32.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/win32/win32.c b/win32/win32.c
index d10b68fbef..e9edfdfc14 100644
--- a/win32/win32.c
+++ b/win32/win32.c
@@ -2332,13 +2332,6 @@ chown(const char *path, int owner, int group)
return 0;
}
-#include <signal.h>
-#ifndef SIGINT
-#define SIGINT 2
-#endif
-#ifndef SIGKILL
-#define SIGKILL 9
-#endif
int
kill(int pid, int sig)
{