]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
lib/path: fix missing header for `struct stat`
authorPatrick Steinhardt <ps@pks.im>
Thu, 17 Oct 2019 06:00:31 +0000 (08:00 +0200)
committerKarel Zak <kzak@redhat.com>
Thu, 17 Oct 2019 10:46:33 +0000 (12:46 +0200)
In commit b1418ed14 (lib/path: add ul_path_stat(), fix absolute paths,
2019-10-15), a new function `ul_path_stat()` was added to "path.h". This
new function prototype causes a compiler warning on musl libc based
systems due to one of the parameters having the unknown type `struct
stat` due to the <sys/stat.h> header not being included.

Fix the warning by including the header.

Signed-off-by: Patrick Steinhardt <ps@pks.im>
include/path.h

index 1378a885767e347a62fbff129eba8878e6ffa5af..a9bab6dbe075616629314d7e64d504ce397191a3 100644 (file)
@@ -3,6 +3,7 @@
 
 #include <stdio.h>
 #include <stdint.h>
+#include <sys/stat.h>
 #include <sys/types.h>
 #include <dirent.h>