_MAXBSIZE
const size_t buflen = _MAXBSIZE;
const size_t buflen = _MAXBSIZE;
char data[_MAXBSIZE];
char buf[18], data[_MAXBSIZE];
buf = xmalloc(_MAXBSIZE);
while ((nread = fread(buf, sizeof(char), _MAXBSIZE, src)) != 0) {
char buf[_MAXBSIZE];
char bfr[_MAXBSIZE]; /* I/O buffer. */
if (bufsz < _MAXBSIZE &&
(buf = realloc(buf, _MAXBSIZE)) == NULL)
while ((len = read(fd, buf, _MAXBSIZE)) > 0) {
while ((len = read(fd, buf, _MAXBSIZE)) > 0) {
while ((len = read(fd, buf, _MAXBSIZE)) > 0)
char *p, buf[_MAXBSIZE];
static char buf[_MAXBSIZE];