1
0
mirror of https://gitlab.xiph.org/xiph/icecast-common.git synced 2024-06-16 06:15:24 +00:00

more portable va_copy for win32

svn path=/trunk/net/; revision=5098
This commit is contained in:
oddsock 2003-07-08 02:39:33 +00:00
parent e2272351a3
commit 92e633e11b

View File

@ -52,7 +52,7 @@
#define EWOULDBLOCK WSAEWOULDBLOCK
#define EALREADY WSAEALREADY
#define socklen_t int
#define va_copy(ap1, ap2) ((ap1) = (ap2))
#define va_copy(ap1, ap2) memcpy(&ap1, &ap2, sizeof(va_list))
#endif
#include "sock.h"