aboutsummaryrefslogtreecommitdiff
path: root/sys/base/coro/internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/base/coro/internal.h')
-rw-r--r--sys/base/coro/internal.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/sys/base/coro/internal.h b/sys/base/coro/internal.h
deleted file mode 100644
index f57d27b..0000000
--- a/sys/base/coro/internal.h
+++ /dev/null
@@ -1,15 +0,0 @@
-#pragma once
-
-#include <u.h>
-#include <base.h>
-
-extern void _newcoro(Coro *co, uintptr (*func)(Coro*, uintptr), void *stk);
-extern uintptr _coroyield(Coro *co, uintptr arg);
-
-struct Coro
-{
- void *sp;
- void *bp;
- uintptr size;
- void *user;
-};