blob: 369e252563cf492bac32eed6b442972605fab954 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifdef __cplusplus
extern "C" {
#endif
#pragma once
#include <stdint.h>
typedef int64_t clock_t;
typedef clock_t time_t;
clock_t clock();
#ifdef __cplusplus
}
#endif
|