1 #ifdef HAVE_CONFIG_H 2 # include "config.h" 3 #endif 4 #include <sys/statfs.h> 5 #include <assert.h> 6 7 int 8 main(void) 9 { 10 struct statfs stb; 11 assert(statfs("/proc/self/status", &stb) == 0); 12 return 0; 13 } 14