aboutsummaryrefslogtreecommitdiff
path: root/hello-world-with-multiple-source-files/hello.c
diff options
context:
space:
mode:
authorArun Isaac2025-04-10 03:01:17 +0100
committerArun Isaac2025-04-10 03:01:17 +0100
commit552757f0abca4aff9af09d1456673996873f91c3 (patch)
treee289750c76d2e228eecf05745228ba5cf1a6c5f9 /hello-world-with-multiple-source-files/hello.c
parent753442090fc1d065f79045a10e12ec4977e565c8 (diff)
downloadgexp-make-552757f0abca4aff9af09d1456673996873f91c3.tar.gz
gexp-make-552757f0abca4aff9af09d1456673996873f91c3.tar.lz
gexp-make-552757f0abca4aff9af09d1456673996873f91c3.zip
Actually use print function.
* hello-world-with-multiple-source-files/hello.c (main): Call print instead of printf.
Diffstat (limited to 'hello-world-with-multiple-source-files/hello.c')
-rw-r--r--hello-world-with-multiple-source-files/hello.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hello-world-with-multiple-source-files/hello.c b/hello-world-with-multiple-source-files/hello.c
index 17b896e..d1caa21 100644
--- a/hello-world-with-multiple-source-files/hello.c
+++ b/hello-world-with-multiple-source-files/hello.c
@@ -2,6 +2,6 @@
int main ()
{
- printf("Hello world!\n");
+ print();
return 0;
}