mirror of
https://github.com/tezc/sc.git
synced 2025-02-04 07:13:10 +08:00
13 lines
178 B
C
13 lines
178 B
C
#include "sc_time.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
int main(void)
|
|
{
|
|
uint64_t t = sc_time_ms();
|
|
sc_time_sleep(1000);
|
|
printf("%lu \n", (unsigned long) (sc_time_ms() - t));
|
|
|
|
return 0;
|
|
}
|