cleanup socketcall syscall interface to ease porting to sane(r) archs
[musl] / src / network / recvmsg.c
index ead16f9..edc5f24 100644 (file)
@@ -1,14 +1,12 @@
 #include <sys/socket.h>
 #include "syscall.h"
-#include "socketcall.h"
 #include "libc.h"
 
 ssize_t recvmsg(int fd, struct msghdr *msg, int flags)
 {
-       unsigned long args[] = { fd, (unsigned long)msg, flags };
        ssize_t r;
        CANCELPT_BEGIN;
-       r = syscall2(__NR_socketcall, SYS_RECVMSG, (long)args);
+       r = socketcall(recvmsg, fd, msg, flags, 0, 0, 0);
        CANCELPT_END;
        return r;
 }