libevent/test/tinytest_local.h
Sebastian Hahn d1b2d11bb5 Always use evutil_snprintf, even if OS provides it
In test/tinytest_local.h we can't redefine snprintf if the OS has it
defined already.
2011-05-26 02:05:54 +02:00

13 lines
169 B
C

#ifdef WIN32
#include <winsock2.h>
#endif
#include "event2/util.h"
#include "util-internal.h"
#ifdef snprintf
#undef snprintf
#endif
#define snprintf evutil_snprintf