From e061b6da5ee46a334169d4e6a52e49857ae22f55 Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Fri, 26 Apr 2024 17:42:44 -0400 Subject: config: Move .c files into config/{use,has} subdirectories --- config/has/statx.c | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 config/has/statx.c (limited to 'config/has/statx.c') diff --git a/config/has/statx.c b/config/has/statx.c new file mode 100644 index 0000000..65f1674 --- /dev/null +++ b/config/has/statx.c @@ -0,0 +1,11 @@ +// Copyright © Tavian Barnes +// SPDX-License-Identifier: 0BSD + +#include +#include + +int main(void) { + struct statx sb; + statx(AT_FDCWD, ".", 0, STATX_BASIC_STATS, &sb); + return 0; +} -- cgit v1.2.3