static Include *istk;
static IncPath *ipath = NULL;
-static efunc __error; /* Pointer to client-provided error reporting function */
+static efunc _error; /* Pointer to client-provided error reporting function */
static evalfunc evaluate;
static int pass; /* HACK: pass 0 = generate dependencies only */
va_end(arg);
if (istk && istk->mstk && istk->mstk->name)
- __error(severity | ERR_PASS1, "(%s:%d) %s", istk->mstk->name,
+ _error(severity | ERR_PASS1, "(%s:%d) %s", istk->mstk->name,
istk->mstk->lineno, buff);
else
- __error(severity | ERR_PASS1, "%s", buff);
+ _error(severity | ERR_PASS1, "%s", buff);
}
static void
{
int h;
- __error = errfunc;
+ _error = errfunc;
cstk = NULL;
istk = nasm_malloc(sizeof(Include));
istk->next = NULL;