15 lines
481 B
C
15 lines
481 B
C
/******************************************************************************/
|
|
/* HashSet for C99, by LoRd_MuldeR <MuldeR2@GMX.de> */
|
|
/* This work has been released under the CC0 1.0 Universal license! */
|
|
/******************************************************************************/
|
|
|
|
#ifndef _TEST_TIME_INCLUDED
|
|
#define _TEST_TIME_INCLUDED
|
|
|
|
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
|
|
uint64_t clock_now(void);
|
|
|
|
#endif /*_TEST_TIME_INCLUDED*/
|