#ifndef LLVM_LIBC_SRC___SUPPORT_TIME_UNITS_H
#define LLVM_LIBC_SRC___SUPPORT_TIME_UNITS_H
#include "hdr/types/time_t.h"
#include "src/__support/common.h"
#include "src/__support/macros/config.h"
namespace LIBC_NAMESPACE_DECL {
namespace time_units {
LIBC_INLINE constexpr time_t operator""_s_ns(unsigned long long s) { … }
LIBC_INLINE constexpr time_t operator""_s_us(unsigned long long s) { … }
LIBC_INLINE constexpr time_t operator""_s_ms(unsigned long long s) { … }
LIBC_INLINE constexpr time_t operator""_ms_ns(unsigned long long ms) { … }
LIBC_INLINE constexpr time_t operator""_ms_us(unsigned long long ms) { … }
LIBC_INLINE constexpr time_t operator""_us_ns(unsigned long long us) { … }
}
}
#endif