mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-28 17:04:34 +00:00
17 lines
171 B
C
17 lines
171 B
C
#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
|