OpenBSD-4.6/regress/gnu/egcs/gcc-bounds/fread-2.c

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

#include <stdio.h>

int main(int argc, char **argv) {
	char buf[100];
	FILE *fp;
	fread(buf, sizeof(char), sizeof(buf) + 10, fp);
	return 1;
}