diff options
Diffstat (limited to 'build')
-rw-r--r-- | build/has/--st-birthtim.c | 9 | ||||
-rw-r--r-- | build/header.mk | 1 |
2 files changed, 10 insertions, 0 deletions
diff --git a/build/has/--st-birthtim.c b/build/has/--st-birthtim.c new file mode 100644 index 0000000..4da621f --- /dev/null +++ b/build/has/--st-birthtim.c @@ -0,0 +1,9 @@ +// Copyright © Tavian Barnes <tavianator@tavianator.com> +// SPDX-License-Identifier: 0BSD + +#include <sys/stat.h> + +int main(void) { + struct stat sb = {0}; + return sb.__st_birthtim.tv_sec; +} diff --git a/build/header.mk b/build/header.mk index 8412fd5..3cea6d7 100644 --- a/build/header.mk +++ b/build/header.mk @@ -9,6 +9,7 @@ include build/exports.mk # All header fragments we generate HEADERS := \ + gen/has/--st-birthtim.h \ gen/has/acl-get-entry.h \ gen/has/acl-get-file.h \ gen/has/acl-get-tag-type.h \ |