1
0
mirror of https://gitlab.xiph.org/xiph/icecast-common.git synced 2024-09-29 04:25:57 -04:00
icecast-common/timing/timing.h
Jack Moffitt 27cbe839e9 Change long long to the more standard uint64_t. This will need to be
typedefed for some platforms.

svn path=/trunk/timing/; revision=2190
2001-10-20 05:03:24 +00:00

10 lines
163 B
C

#ifndef __TIMING_H__
#define __TIMING_H__
#include <stdint.h>
uint64_t timing_get_time(void);
void timing_sleep(uint64_t sleeptime);
#endif /* __TIMING_H__ */