diff options
author | Florian Weimer <fweimer@redhat.com> | 2018-07-10 16:14:45 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2018-07-10 16:14:45 +0200 |
commit | fd70af45528d59a00eb3190ef6706cb299488fcd (patch) | |
tree | 9782185e343e716c4af641cc16ece3ffd5c38ebf /io/sys | |
parent | b444e8f7cc40265c9a20ce5de5f3f6795b7f5028 (diff) | |
download | glibc-fd70af45528d59a00eb3190ef6706cb299488fcd.tar.gz glibc-fd70af45528d59a00eb3190ef6706cb299488fcd.tar.xz glibc-fd70af45528d59a00eb3190ef6706cb299488fcd.zip |
Add the statx function
Diffstat (limited to 'io/sys')
-rw-r--r-- | io/sys/stat.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/io/sys/stat.h b/io/sys/stat.h index 90c403cfd6..762c8538ba 100644 --- a/io/sys/stat.h +++ b/io/sys/stat.h @@ -442,6 +442,10 @@ extern int __xmknodat (int __ver, int __fd, const char *__path, __mode_t __mode, __dev_t *__dev) __THROW __nonnull ((3, 5)); +#ifdef __USE_GNU +# include <bits/statx.h> +#endif + #ifdef __USE_EXTERN_INLINES /* Inlined versions of the real stat and mknod functions. */ |