summaryrefslogtreecommitdiff
path: root/lib/compat.h
blob: 63de65fda935d06ed116da36898252c3d05dd763 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* Copyright 2011,2013 NORDUnet A/S. All rights reserved.
   See LICENSE for licensing information.  */

#ifdef _WIN32
#define INLINE __inline
#else
#define INLINE inline
#endif

ssize_t compat_send (int sockfd, const void *buf, size_t len, int flags);
ssize_t compat_recv (int sockfd, void *buf, size_t len, int flags);