Browse Source

Added include for usleep.

Brucey 5 years ago
parent
commit
f4babe8658
1 changed files with 1 additions and 0 deletions
  1. 1 0
      blitz.mod/blitz_app.h

+ 1 - 0
blitz.mod/blitz_app.h

@@ -34,6 +34,7 @@ int		bbMilliSecs();
 int		bbIsMainThread();
 #if __STDC_VERSION__ >= 199901L
 #ifndef _WIN32
+#include <unistd.h>
 inline void bbUDelay( int microseconds ) {
 	if( microseconds<0 ) return;
 	usleep( microseconds );