also start prefering NtDll API. so far: * NtQueryInformationFile * NtClose adds a performance workaround for windows unicode conversion. but that should probably be removed before merging
9 lines
114 B
C
Vendored
9 lines
114 B
C
Vendored
#define _GNU_SOURCE
|
|
#include <unistd.h>
|
|
#include "syscall.h"
|
|
|
|
int vhangup(void)
|
|
{
|
|
return syscall(SYS_vhangup);
|
|
}
|