UDP w/o bufferevents, part 1.
[radsecproxy.git] / lib / compat.c
1 #include <sys/types.h>
2 #include <sys/socket.h>
3 #include "compat.h"
4
5 ssize_t
6 compat_send (int sockfd, const void *buf, size_t len, int flags)
7 {
8   return send (sockfd, buf, len, flags);
9 }