4.1cBSD/usr/src/lib/libc/stdio/data.c

Compare this file to the similar file:
Show the results in this format:

/* @(#)data.c	4.2 (Berkeley) 10/5/82 */
#include <stdio.h>
#include <sys/param.h>
char	_sibuf[MAXBSIZE];
char	_sobuf[MAXBSIZE];

struct	_iobuf	_iob[_NFILE] ={
	{ 0, NULL, NULL, NULL, _IOREAD, 0},
	{ 0, NULL, NULL, NULL, _IOWRT, 1},
	{ 0, NULL, NULL, NULL, _IOWRT+_IONBF, 2},
};
/*
 * Ptr to end of buffers
 */
struct	_iobuf	*_lastbuf ={ &_iob[_NFILE] };