blob: 5e1cac1f93e2547831572d2eeb569b9023f2e44b [file] [log] [blame]
Dmitry V. Levin0c8853c2016-01-02 13:28:43 +00001#include "tests.h"
Dmitry V. Levin4176d532014-09-21 22:42:45 +00002#include <sys/statfs.h>
3#include <assert.h>
4
5int
6main(void)
7{
8 struct statfs stb;
9 assert(statfs("/proc/self/status", &stb) == 0);
10 return 0;
11}