ciabatta/tests/empty.c

10 lines
192 B
C
Raw Normal View History

2023-07-22 14:30:04 +00:00
#include <cia-def.h>
2023-07-27 13:49:53 +00:00
#include <stdio.h>
2023-07-22 16:28:16 +00:00
int main(int argc, char **argv, char **envp) {
char string[] = "Hello, world!\n";
2023-07-27 13:49:53 +00:00
fwrite(string, 1, sizeof string-1, stdout);
2023-07-22 14:30:04 +00:00
return 0;
}