codice:
#include <time.h>
void sleep(double sleeptime) {
  time_t start = time(NULL);
  while(difftime(time(NULL), start) < sleeptime);
}