mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/sta-core.git
synced 2025-06-13 01:55:59 +00:00
15 lines
192 B
C++
15 lines
192 B
C++
#ifndef STA_TIME_HPP
|
|
#define STA_TIME_HPP
|
|
|
|
#include <cstdint>
|
|
|
|
|
|
namespace sta
|
|
{
|
|
using TimeMsFn = uint32_t (*)();
|
|
using TimeUsFn = uint32_t (*)();
|
|
} // namespace sta
|
|
|
|
|
|
#endif // STA_TIME_HPP
|