diff options
Diffstat (limited to 'klibc/klibc/send.c')
-rw-r--r-- | klibc/klibc/send.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/klibc/klibc/send.c b/klibc/klibc/send.c deleted file mode 100644 index 8c53d0f764..0000000000 --- a/klibc/klibc/send.c +++ /dev/null @@ -1,11 +0,0 @@ -/* - * send.c - */ - -#include <stddef.h> -#include <sys/socket.h> - -int send(int s, const void *buf, size_t len, unsigned int flags) -{ - return sendto(s, buf, len, flags, NULL, 0); -} |