Ported V7.9 changes
This commit is contained in:
parent
456c5fc72b
commit
d74ae2e5dd
|
@ -69,6 +69,7 @@
|
||||||
<ClCompile Include="$(OpenSSH-Src-Path)openbsd-compat\inet_ntoa.c" />
|
<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\inet_ntop.c" />
|
||||||
<ClCompile Include="$(OpenSSH-Src-Path)openbsd-compat\kludge-fd_set.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\md5.c" />
|
||||||
<ClCompile Include="$(OpenSSH-Src-Path)openbsd-compat\mktemp.c" />
|
<ClCompile Include="$(OpenSSH-Src-Path)openbsd-compat\mktemp.c" />
|
||||||
<ClCompile Include="$(OpenSSH-Src-Path)openbsd-compat\openssl-compat.c" />
|
<ClCompile Include="$(OpenSSH-Src-Path)openbsd-compat\openssl-compat.c" />
|
||||||
|
|
|
@ -60,6 +60,7 @@ int w32_raise(int sig);
|
||||||
|
|
||||||
int w32_kill(int pid, int sig);
|
int w32_kill(int pid, int sig);
|
||||||
#define kill(a,b) w32_kill((a), (b))
|
#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);
|
int w32_sigprocmask(int how, const sigset_t *set, sigset_t *oldset);
|
||||||
#define sigprocmask(a,b,c) w32_sigprocmask((a), (b), (c))
|
#define sigprocmask(a,b,c) w32_sigprocmask((a), (b), (c))
|
||||||
|
|
Loading…
Reference in New Issue