1
0
mirror of https://github.com/fluencelabs/wasmer synced 2025-03-26 04:31:04 +00:00
wasmer/lib/emscripten-tests/emtests/test_write_stdout_fileno.c

9 lines
123 B
C
Raw Normal View History

2018-12-27 01:46:41 -06:00
#include <unistd.h>
#include <string.h>
int main()
{
char msg[] = "Hello!\n";
write(STDOUT_FILENO, msg, strlen(msg));
}