mirror of
https://github.com/FEX-Emu/FEX.git
synced 2025-02-13 11:13:38 +00:00
8 lines
93 B
C++
8 lines
93 B
C++
#pragma once
|
|
#include <cstdint>
|
|
|
|
struct timespec64 {
|
|
int64_t tv_sec;
|
|
int64_t tv_nsec;
|
|
};
|