clamav/platform.h

22 lines
322 B
C
Raw Normal View History

2009-09-24 16:08:52 +02:00
#ifndef _WIN32
#define closesocket(s) close(s)
#endif
#ifndef O_BINARY
#define O_BINARY 0
#endif
#ifndef FALSE
#define FALSE (0)
#endif
#ifndef TRUE
#define TRUE (1)
#endif
#ifndef MIN
#define MIN(a, b) (((a) < (b)) ? (a) : (b))
#endif
#ifndef MAX
#define MAX(a,b) (((a) > (b)) ? (a) : (b))
#endif