summaryrefslogtreecommitdiff
path: root/lib/compat.c
blob: b00bea1c2b531f475c15febc83081011bc0de040 (plain)
1
2
3
4
5
6
7
8
9
#include <sys/types.h>
#include <sys/socket.h>
#include "compat.h"

ssize_t
compat_send (int sockfd, const void *buf, size_t len, int flags)
{
  return send (sockfd, buf, len, flags);
}