mirror of
https://github.com/mirror/make.git
synced 2025-03-25 01:00:30 +08:00
* loadapi.c (gmk_eval): Use C90 syntax.
This commit is contained in:
parent
b11bef0bea
commit
9ed452b041
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user