Ported V7.9 changes

This commit is contained in:
Manoj Ampalam 2018-10-25 12:18:28 -07:00
parent 456c5fc72b
commit d74ae2e5dd
2 changed files with 2 additions and 0 deletions

View File

@ -69,6 +69,7 @@
<ClCompile Include="$(OpenSSH-Src-Path)openbsd-compat\inet_ntoa.c" />
<ClCompile Include="$(OpenSSH-Src-Path)openbsd-compat\inet_ntop.c" />
<ClCompile Include="$(OpenSSH-Src-Path)openbsd-compat\kludge-fd_set.c" />
<ClCompile Include="$(OpenSSH-Src-Path)openbsd-compat\libressl-api-compat.c" />
<ClCompile Include="$(OpenSSH-Src-Path)openbsd-compat\md5.c" />
<ClCompile Include="$(OpenSSH-Src-Path)openbsd-compat\mktemp.c" />
<ClCompile Include="$(OpenSSH-Src-Path)openbsd-compat\openssl-compat.c" />

View File

@ -60,6 +60,7 @@ int w32_raise(int sig);
int w32_kill(int pid, int sig);
#define kill(a,b) w32_kill((a), (b))
#define killpg(a,b) w32_kill((a), (b))
int w32_sigprocmask(int how, const sigset_t *set, sigset_t *oldset);
#define sigprocmask(a,b,c) w32_sigprocmask((a), (b), (c))