18 lines
478 B
C
18 lines
478 B
C
|
/*
|
||
|
* vim: sw=2 ts=2 expandtab
|
||
|
*
|
||
|
* THE PIZZA-WARE LICENSE" (derived from "THE BEER-WARE LICENCE"):
|
||
|
* <cfr34k@tkolb.de> wrote this file. As long as you retain this notice you can
|
||
|
* do whatever you want with this stuff. If we meet some day, and you think
|
||
|
* this stuff is worth it, you can buy me a pizza in return. - Thomas Kolb
|
||
|
*/
|
||
|
|
||
|
#ifndef UTILS_H
|
||
|
#define UTILS_H
|
||
|
|
||
|
double get_hires_time(void);
|
||
|
void fsleep(double d);
|
||
|
void sleep_until(double hires_time);
|
||
|
|
||
|
#endif // UTILS_H
|