diff options
author | lancethepants <lancethepants@gmail.com> | 2022-08-26 11:00:56 -0600 |
---|---|---|
committer | lancethepants <lancethepants@gmail.com> | 2022-08-26 11:13:29 -0600 |
commit | 54925a6d3924174aeef5373cd04cddeb4a62b619 (patch) | |
tree | 545c4719ba2241e27cfa9844ca1b2beb0286d8a4 /apt-pkg/contrib | |
parent | 6499f7dc842ebd621f11ea01e83ccbe4125a0581 (diff) |
apt-pkg/contrib/fileutl.h Explicitly include sys/stat.h
This fixes compatibility with musl C library.
Diffstat (limited to 'apt-pkg/contrib')
-rw-r--r-- | apt-pkg/contrib/fileutl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apt-pkg/contrib/fileutl.h b/apt-pkg/contrib/fileutl.h index f4eefd7c2..6f808ac9b 100644 --- a/apt-pkg/contrib/fileutl.h +++ b/apt-pkg/contrib/fileutl.h @@ -26,6 +26,7 @@ #include <set> #include <string> #include <vector> +#include <sys/stat.h> #include <time.h> /* Define this for python-apt */ |