diff options
| author | Arun Isaac | 2025-04-10 03:01:17 +0100 |
|---|---|---|
| committer | Arun Isaac | 2025-04-10 03:01:17 +0100 |
| commit | 552757f0abca4aff9af09d1456673996873f91c3 (patch) | |
| tree | e289750c76d2e228eecf05745228ba5cf1a6c5f9 | |
| parent | 753442090fc1d065f79045a10e12ec4977e565c8 (diff) | |
| download | gexp-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.
| -rw-r--r-- | hello-world-with-multiple-source-files/hello.c | 2 |
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; } |
