From: Paul Smith Date: Tue, 30 Sep 2014 12:32:06 +0000 (-0400) Subject: * loadapi.c (gmk_eval): Use C90 syntax. X-Git-Tag: 4.1~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9ed452b041aba94efc7d62451460550013f1d4d7;p=thirdparty%2Fmake.git * loadapi.c (gmk_eval): Use C90 syntax. --- diff --git a/loadapi.c b/loadapi.c index acf6f844..298ebf8e 100644 --- a/loadapi.c +++ b/loadapi.c @@ -42,10 +42,11 @@ gmk_eval (const char *buffer, const gmk_floc *floc) /* Preserve existing variable buffer context. */ char *pbuf; unsigned int plen; + char *s; install_variable_buffer (&pbuf, &plen); - char *s = xstrdup (buffer); + s = xstrdup (buffer); eval_buffer (s, floc); free (s);