]>
git.proxmox.com Git - wasi-libc.git/blob - libc-bottom-half/cloudlibc/src/libc/time/time.c
f9ef839b0fb57f2dd08ef742275e450673909a06
1 // Copyright (c) 2015-2016 Nuxi, https://nuxi.nl/
3 // SPDX-License-Identifier: BSD-2-Clause
5 #include <common/time.h>
10 time_t time(time_t *tloc
) {
11 __wasi_timestamp_t ts
= 0;
12 (void)__wasi_clock_time_get(__WASI_CLOCK_REALTIME
, NSEC_PER_SEC
, &ts
);
14 *tloc
= ts
/ NSEC_PER_SEC
;
15 return ts
/ NSEC_PER_SEC
;