blob: d261815815cee0a3e58a91b85d10149166b8f3bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "common.h"
#include <stdio.h>
int main(int argc, char** argv) {
char buffer[12] = {0};
CHK_FAIL_START
fread(buffer, (size_t)-1, (size_t)-1, stdin);
CHK_FAIL_END
puts(buffer);
return ret;
}
|