hare

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

commit f4b6f056a1e02a8214917570c93d56e3e1d6362b
parent 42b11251b3e0f0f9ab91867ddce9d3606d57237e
Author: Sebastian <sebastian@sebsite.pw>
Date:   Wed, 29 Jun 2022 18:51:27 -0400

time: fix reference

Diffstat:
Mtime/+linux/functions.ha | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/time/+linux/functions.ha b/time/+linux/functions.ha @@ -19,8 +19,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 -// non-portable. +// 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, nsec = ts.tv_nsec,