Home
last modified time | relevance | path

Searched refs:linebufmax (Results 1 – 1 of 1) sorted by relevance

/netbsd-src/external/bsd/tradcpp/dist/
H A Doutput.c44 static size_t linebufpos, linebufmax; variable
165 if (linebufpos + len > linebufmax) { in output()
166 oldmax = linebufmax; in output()
167 if (linebufmax == 0) { in output()
168 linebufmax = 64; in output()
170 while (linebufpos + len > linebufmax) { in output()
171 linebufmax *= 2; in output()
173 linebuf = dorealloc(linebuf, oldmax, linebufmax); in output()