9os

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit db5ceade9fa1cfb602fab3748814f7d11c4dea3b
parent e09ca953b0530280da880964f35d371fdbfc7519
Author: Roberto E. Vargas Caballero <roberto.vargas@midokura.com>
Date:   Thu, 17 Nov 2022 07:47:59 +0100

os9: Make ictx() void

ictx cannot fail in any way.

Diffstat:
Msrc/os9/hosted/ctx.c | 2--
1 file changed, 0 insertions(+), 2 deletions(-)

diff --git a/src/os9/hosted/ctx.c b/src/os9/hosted/ctx.c @@ -14,6 +14,4 @@ ictx(Task *tp, void *fn) { tp->ctx.stack = (void *) tp->stack.va; tp->ctx.entry = fn; - - return 0; }