diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-09-18 00:53:51 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-09-18 00:53:51 -0600 |
commit | 52eb34af7be585c411a9a9ab39f0bea1d19e7d32 (patch) | |
tree | 27218b9838f6b76b138ae27ae1ed05ad0b8382ad /net9p.h | |
parent | 8e5d84d3724afd9278ac759213d7ea6eb0982e54 (diff) |
fix?
Diffstat (limited to 'net9p.h')
-rw-r--r-- | net9p.h | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,7 +1,9 @@ #ifndef _NET9P_H_ #define _NET9P_H_ -void net9p_listen_cr(void *); -void net9p_worker_cr(void *); +#include "coroutine.h" + +COROUTINE net9p_listen_cr(void *); +COROUTINE net9p_worker_cr(void *); #endif /* _NET9P_H_ */ |