From fb8121c8e4907408de0ecc08f4f0016ed9466285 Mon Sep 17 00:00:00 2001 From: Brooke Vibber Date: Mon, 5 Jan 2026 20:31:15 -0800 Subject: [PATCH] wip --- hello/hello.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/hello/hello.c b/hello/hello.c index 367fff1..3841541 100644 --- a/hello/hello.c +++ b/hello/hello.c @@ -1,7 +1,9 @@ -#include +#include +#include int main(int argc, const char **argv) { - puts("Hello, world!\n"); + const message = "Hello, world!\n"; + write(STDIN_FILENO, message, strlen(message)); return 0; }