1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
$NetBSD: patch-ae,v 1.2 2011/12/18 16:54:09 dholland Exp $
- fix symbol conflict with getline (which is now a POSIX thing)
- fix symbol conflict with logf (from math.h)
--- parse.c.orig 1991-04-24 20:30:42.000000000 +0000
+++ parse.c
@@ -3150,7 +3150,7 @@ Static Stmt *p_body()
long saveserial;
if (verbose)
- fprintf(logf, "%s, %d/%d: Translating %s (in %s)\n",
+ fprintf(loggf, "%s, %d/%d: Translating %s (in %s)\n",
infname, inf_lnum, outf_lnum,
curctx->name, curctx->ctx->name);
notephase = 1;
@@ -3769,7 +3769,7 @@ Token blkind;
out_include(fname, 1);
outsection(majorspace);
pop_input();
- getline();
+ my_getline();
gettok();
}
@@ -4157,8 +4157,8 @@ int need;
if (!fp) {
if (need)
perror(infnbuf);
- if (logf)
- fprintf(logf, "(Unable to open search file \"%s\")\n", infnbuf);
+ if (loggf)
+ fprintf(loggf, "(Unable to open search file \"%s\")\n", infnbuf);
return 0;
}
flushcomments(NULL, -1, -1);
@@ -4195,7 +4195,7 @@ int need;
else
printf("Reading import text for \"%s\"\n", mod->name);
if (verbose)
- fprintf(logf, "%s, %d/%d: Reading import text for \"%s\"\n",
+ fprintf(loggf, "%s, %d/%d: Reading import text for \"%s\"\n",
infname, inf_lnum, outf_lnum, mod->name);
pushctx(mod);
gettok();
|