summaryrefslogtreecommitdiffstats
path: root/config/statx.c
blob: 65f1674ac3c783da9e1864329ce0baf58f74462d (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright © Tavian Barnes <tavianator@tavianator.com>
// SPDX-License-Identifier: 0BSD

#include <fcntl.h>
#include <sys/stat.h>

int main(void) {
	struct statx sb;
	statx(AT_FDCWD, ".", 0, STATX_BASIC_STATS, &sb);
	return 0;
}