diff options
author | WlodekM <[email protected]> | 2025-02-15 10:51:57 +0200 |
---|---|---|
committer | WlodekM <[email protected]> | 2025-02-15 10:51:57 +0200 |
commit | 545c5f85c38de8ddb8c026bf3b76658c8d8f3d6b (patch) | |
tree | a9df68df52ff273715b595efc7cd4cb20f7859a3 /progs/hello/hello.c | |
parent | 967d5cd81a190f6aa7ac44c269d60ae3a1071464 (diff) |
fix some stuff; add some coreutils
Diffstat (limited to 'progs/hello/hello.c')
-rw-r--r-- | progs/hello/hello.c | 8 |
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 |