Files
Odin/vendor/libc-shim/include/time.h
2026-01-22 21:36:53 +01:00

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