Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
strace
/
0c8853c3c39fe11f1a80456e744d7db861c39df2
/
.
/
tests
/
statfs.c
blob: 5e1cac1f93e2547831572d2eeb569b9023f2e44b [
file
] [
log
] [
blame
]
#include
"tests.h"
#include
<sys/statfs.h>
#include
<assert.h>
int
main
(
void
)
{
struct
statfs stb
;
assert
(
statfs
(
"/proc/self/status"
,
&
stb
)
==
0
);
return
0
;
}