mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-02 06:40:05 +01:00
11 lines
136 B
C++
11 lines
136 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "orbis-config.hpp"
|
||
|
|
|
||
|
|
namespace orbis {
|
||
|
|
struct timespec {
|
||
|
|
uint64_t sec;
|
||
|
|
uint64_t nsec;
|
||
|
|
};
|
||
|
|
} // namespace orbis
|