Home
last modified time | relevance | path

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

/netbsd-src/usr.bin/column/
H A Dcolumn.c264 static int maxentry; in input() local
271 list = ecalloc((maxentry = DEFNUM), sizeof(*list)); in input()
289 if (entries == maxentry) { in input()
290 n = erealloc(list, (maxentry + DEFNUM) * sizeof(*n)); in input()
291 (void)memset(n + maxentry, 0, sizeof(*n) * DEFNUM); in input()
292 maxentry += DEFNUM; in input()