Skip to content

Instantly share code, notes, and snippets.

@julibachiller
Created October 26, 2012 01:00
Show Gist options
  • Save julibachiller/3956398 to your computer and use it in GitHub Desktop.
Save julibachiller/3956398 to your computer and use it in GitHub Desktop.
void sleep (float nbr_seconds)
{
clock_t goal;
goal = (nbr_seconds * CLOCKS_PER_SEC) + clock();
while (goal > clock())
{
;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment