summaryrefslogtreecommitdiffhomepage
path: root/misc/examples/coroutines/triples.c
diff options
context:
space:
mode:
Diffstat (limited to 'misc/examples/coroutines/triples.c')
-rw-r--r--misc/examples/coroutines/triples.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/examples/coroutines/triples.c b/misc/examples/coroutines/triples.c
index 9f2fcc1e..fe1ca7c3 100644
--- a/misc/examples/coroutines/triples.c
+++ b/misc/examples/coroutines/triples.c
@@ -1,7 +1,7 @@
// https://quuxplusone.github.io/blog/2019/03/06/pythagorean-triples/
-#include <stc/algo/coroutine.h>
#include <stdio.h>
+#include <stc/coroutine.h>
int gcd(int a, int b) {
while (b) {