mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 01:21:38 -07:00
140c902eff
All these additions are to allow Dear ImGui to be compiled natively.
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
|