blob: 0c8feabf8fc9435e1ba79dfa40c9a736109a7c1a [file] [log] [blame]
Dmitry V. Levin4176d532014-09-21 22:42:45 +00001#ifdef HAVE_CONFIG_H
2# include "config.h"
3#endif
4#include <sys/statfs.h>
5#include <assert.h>
6
7int
8main(void)
9{
10 struct statfs stb;
11 assert(statfs("/proc/self/status", &stb) == 0);
12 return 0;
13}