From: Jonathan Tan <jonathantanmy@xxxxxxxxxx> pager.h uses uintmax_t but does not include stdint.h. Therefore, add this include statement. This was discovered when writing a stub pager.c file. Signed-off-by: Jonathan Tan <jonathantanmy@xxxxxxxxxx> Signed-off-by: Calvin Wan <calvinwan@xxxxxxxxxx> --- pager.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pager.h b/pager.h index b77433026d..015bca95e3 100644 --- a/pager.h +++ b/pager.h @@ -1,6 +1,8 @@ #ifndef PAGER_H #define PAGER_H +#include <stdint.h> + struct child_process; const char *git_pager(int stdout_is_tty); -- 2.44.0.rc0.258.g7320e95886-goog