PADSIZE
static const CHAR blanks[PADSIZE] =
static const CHAR zeroes[PADSIZE] =
n = (howmany >= PADSIZE) ? PADSIZE : howmany;
while (n > PADSIZE) {
ret += __printf_puts(io, with, PADSIZE);
n -= PADSIZE;
static char blanks[PADSIZE] =
static char zeroes[PADSIZE] =