From b283a96139cfff20543990e671f83f17734048fc Mon Sep 17 00:00:00 2001 From: Andrew Borodin Date: Thu, 12 Sep 2024 15:20:38 +0300 Subject: [PATCH] (show_version): add output of uintmax_t size. Signed-off-by: Andrew Borodin --- src/textconf.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/textconf.c b/src/textconf.c index 553e09999..48d59abdb 100644 --- a/src/textconf.c +++ b/src/textconf.c @@ -29,6 +29,7 @@ #include #include #include +#include /* uintmax_t */ #if defined (ENABLE_VFS) && defined(ENABLE_VFS_SFTP) #include @@ -188,6 +189,7 @@ show_version (void) TYPE_INFO (void *); TYPE_INFO (size_t); TYPE_INFO (off_t); + TYPE_INFO (uintmax_t); #undef TYPE_INFO (void) puts (""); }