Commit 9bc48e8e authored by Rohan Garg's avatar Rohan Garg Committed by Youness Alaoui

Properly ifdef windows headers in order to get compiles working on linux again

parent a2f6dcc2
......@@ -43,10 +43,10 @@
#include <string.h>
#include <stdlib.h>
#include <stdarg.h>
#include <io.h>
#ifdef _WIN32
#include <winsock2.h>
#include <io.h>
#else
#include <sys/types.h>
#include <sys/socket.h>
......
......@@ -44,7 +44,9 @@
#include <stdlib.h>
#include <string.h>
#ifdef _WIN32
#include <io.h>
#endif
static NiceComponentState global_lagent_state = NICE_COMPONENT_STATE_LAST;
......
......@@ -41,7 +41,9 @@
#include <stdlib.h>
#include <string.h>
#ifdef _WIN32
#include <io.h>
#endif
static NiceComponentState global_lagent_state = NICE_COMPONENT_STATE_LAST;
static NiceComponentState global_ragent_state = NICE_COMPONENT_STATE_LAST;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment