2022-09-26 14:35:38 -07:00

8 lines
93 B
C++

#pragma once
#include <cstdint>
struct timespec64 {
int64_t tv_sec;
int64_t tv_nsec;
};