blob: 5e1cac1f93e2547831572d2eeb569b9023f2e44b [file] [log] [blame]
#include "tests.h"
#include <sys/statfs.h>
#include <assert.h>
int
main(void)
{
struct statfs stb;
assert(statfs("/proc/self/status", &stb) == 0);
return 0;
}