aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/hello.c
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-09-03 20:31:01 +0900
committernsfisis <nsfisis@gmail.com>2025-09-03 20:31:01 +0900
commitb845c3cebf6ae86036a85bbdc155def5044c9940 (patch)
tree5159a77490c54466a9850e1cc138cea57f7cf62d /examples/hello.c
parentf3a1ea57244608c1795e7f90cb3077c6a01686a9 (diff)
downloadducc-b845c3cebf6ae86036a85bbdc155def5044c9940.tar.gz
ducc-b845c3cebf6ae86036a85bbdc155def5044c9940.tar.zst
ducc-b845c3cebf6ae86036a85bbdc155def5044c9940.zip
feat: use <stdio.h> of glibc in examples/*.c
Diffstat (limited to 'examples/hello.c')
-rw-r--r--examples/hello.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/hello.c b/examples/hello.c
index 5dce624..a8cb1ec 100644
--- a/examples/hello.c
+++ b/examples/hello.c
@@ -1,4 +1,4 @@
-int printf(const char*, ...);
+#include <stdio.h>
int main() {
printf("Hello, World!\n");