commit 888ae65035a604f22010ff55f5499a3d137f930c from: Thomas Adam date: Sun Jul 03 22:53:34 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 - 5c5d88bfed24f830451380e4398c7749207188db commit + 888ae65035a604f22010ff55f5499a3d137f930c blob - b005c2c948e0b4b35147550b1b23fef240ddf8b4 blob + bc70d6e4c965944e0d8b57034fff72768b109ac1 --- include/got_date.h +++ include/got_date.h @@ -14,5 +14,8 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +#include +#include + void got_date_format_gmtoff(char *, size_t, time_t);