From 84e356434c812a560e9c2dc36fa997ea5fa2373f Mon Sep 17 00:00:00 2001 From: Naveen M K Date: Mon, 15 Mar 2021 22:58:13 +0530 Subject: [PATCH] fix-build: a small problem while fixing conflicts with the export of kill_process_tree function Signed-off-by: Naveen M K --- winsup/cygwin/include/cygwin/signal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/winsup/cygwin/include/cygwin/signal.h b/winsup/cygwin/include/cygwin/signal.h index a479c8f516..b511daf6a0 100644 --- a/winsup/cygwin/include/cygwin/signal.h +++ b/winsup/cygwin/include/cygwin/signal.h @@ -478,8 +478,8 @@ int siginterrupt (int, int); #ifdef __INSIDE_CYGWIN__ extern const char *sys_sigabbrev[]; extern const char *sys_siglist[]; -#elif __BSD_VISIBLE extern void kill_process_tree(pid_t pid, int sig); +#elif __BSD_VISIBLE extern const char __declspec(dllimport) *sys_sigabbrev[]; extern const char __declspec(dllimport) *sys_siglist[]; extern void __declspec(dllimport) kill_process_tree(pid_t pid, int sig);