mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-30 18:02:02 +00:00
24 lines
267 B
C
24 lines
267 B
C
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#pragma once
|
|
|
|
#include <stdint.h>
|
|
|
|
#define CLOCK_MONOTONIC 1
|
|
|
|
struct timespec
|
|
{
|
|
int64_t tv_sec;
|
|
int64_t tv_nsec;
|
|
};
|
|
|
|
int clock_gettime(int clockid, struct timespec *tp);
|
|
|
|
int sched_yield();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|