00001 #ifndef LITTLEWIRE_UTIL_H 00002 #define LITTLEWIRE_UTIL_H 00003 00004 00005 #ifdef LINUX 00006 #include <unistd.h> 00007 #else 00008 #include <windows.h> 00009 #endif 00010 00011 /* Delay in miliseconds */ 00012 void delay(unsigned int duration); 00013 00014 #endif