diff --git a/ch2-cgo/ch2-01-hello-cgo.md b/ch2-cgo/ch2-01-hello-cgo.md index fa465a0..bd802f7 100644 --- a/ch2-cgo/ch2-01-hello-cgo.md +++ b/ch2-cgo/ch2-01-hello-cgo.md @@ -103,8 +103,8 @@ void SayHello(const char* s); ```c // hello.c -#include #include "hello.h" +#include void SayHello(const char* s) { puts(s);