Dmitry V. Levin | 0c8853c | 2016-01-02 13:28:43 +0000 | [diff] [blame] | 1 | #include "tests.h" |
Dmitry V. Levin | 4176d53 | 2014-09-21 22:42:45 +0000 | [diff] [blame] | 2 | #include <sys/statfs.h> |
3 | #include <assert.h> | ||||
4 | |||||
5 | int | ||||
6 | main(void) | ||||
7 | { | ||||
8 | struct statfs stb; | ||||
9 | assert(statfs("/proc/self/status", &stb) == 0); | ||||
10 | return 0; | ||||
11 | } |