|
Message-ID: <88ca424bda61e1149c28be73668e83a5.squirrel@mail.haddonthethird.net> 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.