fix inadvertent introduction of extern object stx

commit dfc81828f7 accidentally defined
an instance of struct statx along with the struct declaration.
This commit is contained in:
Rich Felker
2019-07-19 00:39:02 -04:00
parent dfc81828f7
commit e468ed442d
+1 -1
View File
@@ -31,7 +31,7 @@ struct statx {
uint32_t stx_dev_major;
uint32_t stx_dev_minor;
uint64_t spare[14];
} stx;
};
static int fstatat_statx(int fd, const char *restrict path, struct stat *restrict st, int flag)
{