Skip to content
Snippets Groups Projects
Commit c8c3a30d authored by rswindell's avatar rswindell
Browse files

Removed SLEEP definition (redundant).

parent f510adf8
No related branches found
No related tags found
No related merge requests found
......@@ -151,21 +151,6 @@ char* itoa(int val, char* str, int radix)
}
#endif
#if defined(_WIN32)
#define SLEEP(x) Sleep(x)
#elif defined(__OS2__)
#define SLEEP(x) DosSleep(x)
#elif defined(__unix__)
#define SLEEP(x) usleep(x*1000)
#endif
/****************************************************************************/
/* Reads the data for node number 'number' into the structure 'node' */
/* from NODE.DAB */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment