On Thu, Jun 16, 2022 at 08:48:00PM -0400, Viktor Dukhovni wrote: > > Just Fyi, when compiling postfix, I keep running into <stdio.h> missing from > > src/posttls-finger/posttls-finger.c > > Adding the stdio header resolves the issue, easy fix. > > Feel free to post a patch. I don't see this on FreeBSD or MacOS. What > platform are you building on?
I guess since usage() references stderr, including <stdio.h> explicitly is warranted. --- src/posttls-finger/posttls-finger.c +++ src/posttls-finger/posttls-finger.c @@ -335,6 +335,7 @@ #include <string.h> #include <ctype.h> +#include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <signal.h> #include <fcntl.h> -- Viktor.