shithub: scc

ref: 2d1b151c900071e5362b23e2e673c3cc0221c166
dir: /src/libc/stdio/_allocbuf.c/

View raw version
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include "../libc.h"

int
_allocbuf(FILE *fp)
{
	char *bp;

	if ((bp = malloc(BUFSIZ)) == NULL) {
		fp->flags |= _IOERR;
		errno = ENOMEM;
		return EOF;
	}
	fp->len = BUFSIZ;
	fp->rp = fp->wp = fp->buf = bp;
	fp->lp = bp + BUFSIZ;

	return 0;
}