blob: 64e518ba6d519032db8157e516020b7c4dd53612 [file] [log] [blame]
// Copyright 2017 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef GARNET_LIB_MACHINA_RTC_H_
#define GARNET_LIB_MACHINA_RTC_H_
#include <time.h>
#include <zircon/types.h>
namespace machina {
// Returns the current time in seconds.
static inline time_t rtc_time() {
return zx_clock_get(ZX_CLOCK_UTC) / ZX_SEC(1);
}
} // namespace machina
#endif // GARNET_LIB_MACHINA_RTC_H_