Module: wine Branch: master Commit: a20b997b3430bd7dc94ffd587cd299efa467420e URL: https://source.winehq.org/git/wine.git/?a=commit;h=a20b997b3430bd7dc94ffd587...
Author: Gerald Pfeifer gerald@pfeifer.com Date: Sun Jun 14 17:58:33 2020 +0200
ntdll: Include <signal.h> where needed in the Unix library.
Signed-off-by: Gerald Pfeifer gerald@pfeifer.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/ntdll/unix/process.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/dlls/ntdll/unix/process.c b/dlls/ntdll/unix/process.c index 9f38f042de..58ba031421 100644 --- a/dlls/ntdll/unix/process.c +++ b/dlls/ntdll/unix/process.c @@ -28,6 +28,7 @@
#include <errno.h> #include <fcntl.h> +#include <signal.h> #include <stdarg.h> #include <stdio.h> #include <stdlib.h>