commit ef0f20a88731571e4b4e9152da6cd4d9aac43c49 from: Thomas Adam date: Mon Jul 04 08:38:19 2022 UTC got_date.h: add explicit #includes Don't rely on implicit/"hidden" includes, but rather add them to the header file so their inclusion doesn't result in missing values. Although not explicitly a functional change, this does help -portable. This ensures size_t/time_t are always present. OK @jrick commit - 2b82da7bd8cb089164cb6cffd0b432cafc419e2b commit + ef0f20a88731571e4b4e9152da6cd4d9aac43c49 blob - 194ecc3f485f78ec635a677b311fac2569134071 blob + bc70d6e4c965944e0d8b57034fff72768b109ac1 --- include/got_date.h +++ include/got_date.h @@ -15,6 +15,7 @@ */ #include +#include void got_date_format_gmtoff(char *, size_t, time_t);