From: Philipp Takacs Date: Fri, 21 Aug 2020 15:42:07 +0000 (+0200) Subject: remove duplicate definition of tmp in uip/mhbuild.c X-Git-Url: http://git.marmaro.de/?p=mmh;a=commitdiff_plain;h=b17ea39dc17e5514f33b3f5c34ede92bd16e208c remove duplicate definition of tmp in uip/mhbuild.c The tmp variable is already defined in uip/mhparse.c. This fixes a build error on FreeBSD 13 --- diff --git a/uip/mhbuild.c b/uip/mhbuild.c index a233c68..c032022 100644 --- a/uip/mhbuild.c +++ b/uip/mhbuild.c @@ -51,7 +51,7 @@ char *version=VERSION; ** Directory to place tmp files. This must ** be set before these routines are called. */ -char *tmp; +extern char *tmp; pid_t xpid = 0;