ref: 38d3a8a38b0cd7b2b4c159c1fb68c3c0622f00c0
dir: /sys/src/ape/lib/bsd/send.c/
/* posix */
#include <sys/types.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
/* bsd extensions */
#include <sys/uio.h>
#include <sys/socket.h>
#include "priv.h"
int
send(int fd, char *a, int n, int flags)
{
if(flags & MSG_OOB){
errno = EOPNOTSUPP;
return -1;
}
return write(fd, a, n);
}
int
recv(int fd, char *a, int n, int flags)
{
if(flags & MSG_OOB){
errno = EOPNOTSUPP;
return -1;
}
return read(fd, a, n);
}