From 1579a7ac76e69ed7a676cc8301f11bfcea54c0e7 Mon Sep 17 00:00:00 2001 From: KaruroChori Date: Fri, 7 Feb 2025 03:44:49 +0000 Subject: [PATCH] Update coroutine.h To avoid missing `size_t` in header file. --- coroutine.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/coroutine.h b/coroutine.h index 14a197c..51e212c 100644 --- a/coroutine.h +++ b/coroutine.h @@ -1,6 +1,8 @@ #ifndef COROUTINE_H_ #define COROUTINE_H_ +#include + // # What is a Coroutine? // // Coroutine is a lightweight user space thread with its own stack that can