mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-06 15:48:51 +00:00
box2d: update to 3.1.0
This commit is contained in:
Vendored
+23
@@ -0,0 +1,23 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user