aboutsummaryrefslogtreecommitdiff
path: root/sys/libn/coro.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/libn/coro.c')
-rw-r--r--sys/libn/coro.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/libn/coro.c b/sys/libn/coro.c
index 2ad629b..923bb7e 100644
--- a/sys/libn/coro.c
+++ b/sys/libn/coro.c
@@ -25,7 +25,7 @@ struct Coro
};
Coro*
-coro·new(uintptr stk, uintptr (*func)(Coro*, uintptr))
+coro·make(uintptr stk, uintptr (*func)(Coro*, uintptr))
{
if (!func) return nil;
if (stk == 0) stk = 8192;