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