newsize           101 libutil/strbuf.c 	int newsize = sb->sbufsize + (length > EXPANDSIZE ? length : EXPANDSIZE);
newsize           106 libutil/strbuf.c 	newbuf = (char *)check_realloc(sb->sbuf, newsize + 1);
newsize           107 libutil/strbuf.c 	sb->sbufsize = newsize;