Skip to content

Instantly share code, notes, and snippets.

@luoyetx
Created March 25, 2016 02:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luoyetx/6b86f8b2732eca09177f to your computer and use it in GitHub Desktop.
Save luoyetx/6b86f8b2732eca09177f to your computer and use it in GitHub Desktop.
cross platform sleep function
#ifdef WIN32
#include <windows.h>
#define JDA_SLEEP(ms) Sleep(ms)
#else
#include <unistd.h>
#define JDA_SLEEP(ms) usleep(ms)
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment