Follow @Openwall on Twitter for new release announcements and other news
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date: Tue, 19 Jun 2012 15:22:55 -0400
From: william@...donthethird.net
To: musl@...ts.openwall.com
Subject: vhangup syscall

Implement the vhangup syscall, which was listed in unistd.h but missing
from the library.

--- /dev/null
+++ src/src/linux/vhangup.c
@@ -0,0 +1,7 @@
+#include <unistd.h>
+#include "syscall.h"
+
+int vhangup(void)
+{
+	return syscall(SYS_vhangup);
+}

Powered by blists - more mailing lists

Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.