summary refs log tree commit diff
path: root/progs/hello
diff options
context:
space:
mode:
authorWlodekM <[email protected]>2025-02-15 10:51:57 +0200
committerWlodekM <[email protected]>2025-02-15 10:51:57 +0200
commit545c5f85c38de8ddb8c026bf3b76658c8d8f3d6b (patch)
treea9df68df52ff273715b595efc7cd4cb20f7859a3 /progs/hello
parent967d5cd81a190f6aa7ac44c269d60ae3a1071464 (diff)
fix some stuff; add some coreutils
Diffstat (limited to 'progs/hello')
-rw-r--r--progs/hello/hello.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/progs/hello/hello.c b/progs/hello/hello.c
new file mode 100644
index 0000000..e11e06e
--- /dev/null
+++ b/progs/hello/hello.c
@@ -0,0 +1,8 @@
+#include <unistd.h>
+#include <stdlib.h>
+
+__attribute__((force_align_arg_pointer))
+int main() {
+    write(1, ":3\n", 3);
+    exit(0);
+}
\ No newline at end of file