* 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
This commit is contained in:
usa 2002-08-28 02:39:29 +00:00
parent a13ebdb836
commit c1454b3acb
3 changed files with 15 additions and 7 deletions

View file

@ -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)
{