CommonFuncs: Remove SLEEP macro

There's already a function in Thread for this.
This commit is contained in:
Lioncash
2015-09-04 02:14:10 -04:00
parent 4218fb4eea
commit a11ae2cf30
6 changed files with 9 additions and 16 deletions

View File

@ -4,13 +4,6 @@
#pragma once
#ifdef _WIN32
#define SLEEP(x) Sleep(x)
#else
#include <unistd.h>
#define SLEEP(x) usleep(x*1000)
#endif
#ifdef __APPLE__
#include <libkern/OSByteOrder.h>
#endif