Fix up threading code from port tests to windows.

This commit is contained in:
Richard Newton
2013-08-17 14:23:22 +01:00
parent 7f74fc7c99
commit a83baa9b0b
7 changed files with 18 additions and 24 deletions

View File

@@ -23,8 +23,7 @@
#include <stdlib.h>
#include "testutil.hpp"
static void *
zap_handler (void *zap)
static void zap_handler (void *zap)
{
char *version = s_recv (zap);
char *sequence = s_recv (zap);
@@ -52,8 +51,6 @@ zap_handler (void *zap)
int rc = zmq_close (zap);
assert (rc == 0);
return NULL;
}
int main (void)