add vhangup syscall wrapper
[musl] / src / linux / vhangup.c
diff --git a/src/linux/vhangup.c b/src/linux/vhangup.c
new file mode 100644 (file)
index 0000000..0203071
--- /dev/null
@@ -0,0 +1,8 @@
+#define _GNU_SOURCE
+#include <unistd.h>
+#include "syscall.h"
+
+int vhangup(void)
+{
+       return syscall(SYS_vhangup);
+}