aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/hello.c
diff options
context:
space:
mode:
authorlemon <lsof@mailbox.org>2023-06-05 10:28:57 +0200
committerlemon <lsof@mailbox.org>2023-06-05 10:58:35 +0200
commited47a54958f5bd48dc364d4a0f77f778768696bb (patch)
treec68f7b1426c198964b37238c6195f0569a15ab2b /test/hello.c
parentefc0cf8039cbff5e0f0d52fd7414c7186129b6ac (diff)
strlits
Diffstat (limited to 'test/hello.c')
-rw-r--r--test/hello.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/hello.c b/test/hello.c
new file mode 100644
index 0000000..98a93a0
--- /dev/null
+++ b/test/hello.c
@@ -0,0 +1,5 @@
+int printf(const char *, ...);
+
+int main() {
+ printf("hello world\n");
+}