FreeBASIC  0.91.0
qb_sleep.c
Go to the documentation of this file.
1 /* QB compatible SLEEP */
2 
3 #include "fb.h"
4 
5 /*:::::*/
6 FBCALL void fb_SleepQB( int secs )
7 {
8  fb_Sleep( secs < 0 ? secs : secs * 1000 );
9 }