mirror of
https://github.com/tezc/sc.git
synced 2025-01-28 07:03:06 +08:00
12 lines
207 B
C
12 lines
207 B
C
#include "sc_time.h"
|
|
#include <stdio.h>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
uint64_t t = sc_time_ms();
|
|
sc_time_sleep(1000);
|
|
printf("%lu \n", (unsigned long) (sc_time_ms() - t));
|
|
|
|
return 0;
|
|
}
|