util-linux.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] lib/path: fix missing header for `struct stat`
@ 2019-10-17  6:00 Patrick Steinhardt
  2019-10-17 10:57 ` Karel Zak
  0 siblings, 1 reply; 2+ messages in thread
From: Patrick Steinhardt @ 2019-10-17  6:00 UTC (permalink / raw)
  To: util-linux; +Cc: Patrick Steinhardt, Karel Zak

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 | 1 +
 1 file changed, 1 insertion(+)

diff --git a/include/path.h b/include/path.h
index 1378a8857..a9bab6dbe 100644
--- a/include/path.h
+++ b/include/path.h
@@ -3,6 +3,7 @@
 
 #include <stdio.h>
 #include <stdint.h>
+#include <sys/stat.h>
 #include <sys/types.h>
 #include <dirent.h>
 
-- 
2.23.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-10-17 10:57 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-17  6:00 [PATCH] lib/path: fix missing header for `struct stat` Patrick Steinhardt
2019-10-17 10:57 ` Karel Zak

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).