From b17ea39dc17e5514f33b3f5c34ede92bd16e208c Mon Sep 17 00:00:00 2001 From: Philipp Takacs Date: Fri, 21 Aug 2020 17:42:07 +0200 Subject: [PATCH] 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 --- uip/mhbuild.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 1.7.10.4