#define _GNU_SOURCE #include #include "syscall.h" int vhangup(void) { return syscall(SYS_vhangup); } #ifdef TEST int main(void) { return 0; } #endif