blob: 952375444b9da8e59c37e4fc9c1c62cb13460cde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Copyright (c) 2016 Nuxi, https://nuxi.nl/
//
// SPDX-License-Identifier: BSD-2-Clause
#include <common/clock.h>
#include <wasi/api.h>
#include <time.h>
const struct __clockid _CLOCK_REALTIME = {
.id = __WASI_CLOCKID_REALTIME,
};
|