1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-03-03 18:57:28 +01:00

Avoid generic names.

This commit is contained in:
Sandu Liviu Catalin 2020-04-27 10:56:22 +03:00
parent b0e7c305b6
commit 935ae53855
3 changed files with 3 additions and 12 deletions

View File

@ -49,11 +49,6 @@
#include <assert.h>
#include <limits.h>
#ifdef __cplusplus
extern "C"
{
#endif
/*---------------------------------------------------------------------------*/
/* */
/* OS Identification */
@ -215,8 +210,4 @@ extern "C"
#define FPRINTF fprintf
#endif
#ifdef __cplusplus
}
#endif
#endif /* __HOST_H__ */

View File

@ -85,7 +85,7 @@
#define IPTOS_LOWDELAY 0x10
#endif
#include "Host.h"
#include "HostConf.h"
#include "StatTimer.h"
//-----------------------------------------------------------------------------

View File

@ -56,7 +56,7 @@
#include <sys/time.h>
#endif
#include "Host.h"
#include "HostConf.h"
#if defined(_WIN32)
#define GET_CLOCK_COUNT(x) QueryPerformanceCounter((LARGE_INTEGER *)x)