aboutsummaryrefslogtreecommitdiff
path: root/src/stdlib/stdlib.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-12-07 23:08:08 -0500
committerBruce Hill <bruce@bruce-hill.com>2025-12-07 23:08:08 -0500
commit08c47e1fabd1a2fb43c18828db8ad845f7db3a99 (patch)
tree5448c2707496c5dfeed2f34803582b5e7fe94fae /src/stdlib/stdlib.h
parent4c5d15115d2d6c08c080d7d4a39efe039658d616 (diff)
More correct handling for sleep()
Diffstat (limited to 'src/stdlib/stdlib.h')
-rw-r--r--src/stdlib/stdlib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stdlib/stdlib.h b/src/stdlib/stdlib.h
index 392b5f23..3afe3529 100644
--- a/src/stdlib/stdlib.h
+++ b/src/stdlib/stdlib.h
@@ -79,6 +79,6 @@ Text_t ask(Text_t prompt, bool bold, bool force_tty);
_Noreturn void tomo_exit(Text_t text, int32_t status);
Closure_t spawn(Closure_t fn);
-void sleep_num(double seconds);
+void sleep_seconds(double seconds);
OptionalText_t getenv_text(Text_t name);
void setenv_text(Text_t name, Text_t value);