Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
valgrind
/
5c3ea676430c8c5b4bae9c3ffd1f16a203081315
/
.
/
tests
/
fwrite.c
blob: 1eec4a4f8ef6872b7fc78ccc5d5ec5f04ae1fa2f [
file
] [
log
] [
blame
]
#include
<stdlib.h>
#include
<unistd.h>
int
main
(
void
)
{
char
*
arr
=
malloc
(
10
);
(
void
)
write
(
1
/* stdout */
,
arr
,
10
);
return
0
;
}