From c153e052583fecc39f2cac9c40f99218e2e70c41 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Fri, 21 Mar 2025 18:07:17 -0400 Subject: Fixes for ask() being optional and command success status --- stdlib/stdlib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'stdlib') diff --git a/stdlib/stdlib.c b/stdlib/stdlib.c index 9103e4dd..d09488d0 100644 --- a/stdlib/stdlib.c +++ b/stdlib/stdlib.c @@ -646,7 +646,7 @@ public _Noreturn void tomo_exit(Text_t text, int32_t status) _exit(status); } -public Text_t ask(Text_t prompt, bool bold, bool force_tty) +public OptionalText_t ask(Text_t prompt, bool bold, bool force_tty) { OptionalText_t ret = NONE_TEXT; FILE *out = stdout; -- cgit v1.2.3