|
Lines 43-49
Link Here
|
| 43 |
|
43 |
|
| 44 |
/* database output macros that update its offset */ |
44 |
/* database output macros that update its offset */ |
| 45 |
#define dbputc(c) (++dboffset, (void) putc(c, newrefs)) |
45 |
#define dbputc(c) (++dboffset, (void) putc(c, newrefs)) |
| 46 |
#if Linux || BSD && !sun |
46 |
#if Linux || __FreeBSD__ || BSD && !sun |
| 47 |
#define dbfputs(s) (dboffset += strlen(s), fputs(s, newrefs)) |
47 |
#define dbfputs(s) (dboffset += strlen(s), fputs(s, newrefs)) |
| 48 |
#else |
48 |
#else |
| 49 |
#define dbfputs(s) (dboffset += fputs(s, newrefs)) |
49 |
#define dbfputs(s) (dboffset += fputs(s, newrefs)) |