diff options
Diffstat (limited to 'manual tests/9 nostdlib/prog.c')
-rw-r--r-- | manual tests/9 nostdlib/prog.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/manual tests/9 nostdlib/prog.c b/manual tests/9 nostdlib/prog.c new file mode 100644 index 0000000..9414bce --- /dev/null +++ b/manual tests/9 nostdlib/prog.c @@ -0,0 +1,7 @@ + +#include<stdio.h> + +int main() { + const char *message = "Hello without stdlib.\n"; + return simple_print(message, simple_strlen(message)); +} |