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