Hi malloc(3) and friends require stdlib.h, SIZE_MAX requires stdint.h.
Best, Martin Index: ssh-xmss.c =================================================================== RCS file: /cvs/src/usr.bin/ssh/ssh-xmss.c,v retrieving revision 1.4 diff -u -p -r1.4 ssh-xmss.c --- ssh-xmss.c 19 Oct 2020 22:49:23 -0000 1.4 +++ ssh-xmss.c 7 Apr 2022 07:14:09 -0000 @@ -19,8 +19,10 @@ #include <sys/types.h> #include <limits.h> +#include <stdlib.h> #include <string.h> #include <stdarg.h> +#include <stdint.h> #include <unistd.h> #include "log.h"
