rework langinfo code for ABI compat and for use by time code
[musl] / src / network / recv.c
index 521a4b1..d04a54a 100644 (file)
@@ -1,14 +1,8 @@
 #include <sys/socket.h>
 #include "syscall.h"
-#include "socketcall.h"
 #include "libc.h"
 
 ssize_t recv(int fd, void *buf, size_t len, int flags)
 {
-       unsigned long args[] = { fd, (unsigned long)buf, len, flags };
-       ssize_t r;
-       CANCELPT_BEGIN;
-       r = syscall2(__NR_socketcall, SYS_RECV, (long)args);
-       CANCELPT_END;
-       return r;
+       return recvfrom(fd, buf, len, flags, 0, 0);
 }