From 507a5a689e7441782fcdbe96d88068dee9a3145e Mon Sep 17 00:00:00 2001 From: Nguyễn Thái Ngọc Duy Date: Wed, 15 Sep 2010 12:38:10 +1000 Subject: win32: process.c: implement kill(), SIGTERM only --- include/mingw.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/mingw.h b/include/mingw.h index 53a0a0d67..a43e8eca2 100644 --- a/include/mingw.h +++ b/include/mingw.h @@ -285,7 +285,7 @@ IMPL(getuid,int,1,void); int fcntl(int fd, int cmd, ...); #define fork() -1 IMPL(fsync,int,0,int fd UNUSED_PARAM); -NOIMPL(kill,pid_t pid UNUSED_PARAM, int sig UNUSED_PARAM); +int kill(pid_t pid, int sig); int link(const char *oldpath, const char *newpath); NOIMPL(mknod,const char *name UNUSED_PARAM, mode_t mode UNUSED_PARAM, dev_t device UNUSED_PARAM); int mingw_open (const char *filename, int oflags, ...); -- cgit v1.2.3-55-g6feb