1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

zmq: fix include

This commit is contained in:
Steffen Vogel 2017-11-17 17:54:49 +01:00
parent e6a754170b
commit 3fc3c7c992

View file

@ -30,7 +30,10 @@
#include <stdlib.h>
#include <assert.h>
#include <zmq.h>
#include <zmq_utils.h>
#if ZMQ_VERSION_MAJOR < 4 || (ZMQ_VERSION_MAJOR == 4 && ZMQ_VERSION_MINOR <= 1)
#include <zmq_utils.h>
#endif
int main (int argc, char *argv[])
{