Sign in
swiftshader
/
SwiftShader
/
2bbda7f48c30683eea26e4901054c58b79221d53
/
.
/
wasm-tests
/
hello-puts.c
blob: fa5dc6a6a932d901b800f983e1f0b49e4920f077 [
file
]
#include
<stdio.h>
#include
<string.h>
#include
<unistd.h>
int
main
(
int
argc
,
const
char
**
argv
)
{
fputs
(
"Hello,"
,
stdout
);
fputs
(
" "
,
stdout
);
fputs
(
"world\n"
,
stdout
);
return
0
;
}