hare

[hare] The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit a6329cddad082e21ee237ed669aec32e43c91407
parent 9a199fbd27c2723dbf6d34cd34b61a0ad363a588
Author: Lorenz (xha) <lorenz@xha.li>
Date:   Tue, 26 Sep 2023 10:50:55 +0200

time/+freebsd: s/rt::instant/instant

Signed-off-by: Lorenz (xha) <lorenz@xha.li>

Diffstat:
Mtime/+freebsd/functions.ha | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/time/+freebsd/functions.ha b/time/+freebsd/functions.ha @@ -17,7 +17,7 @@ export fn instant_to_timespec(t: instant, ts: *rt::timespec) void = { ts.tv_nsec = t.nsec; }; -// Converts a [[rt::timespec]] to an [[rt::instant]]. This function is +// Converts a [[rt::timespec]] to an [[instant]]. This function is // non-portable. export fn timespec_to_instant(ts: rt::timespec) instant = instant { sec = ts.tv_sec,