summaryrefslogtreecommitdiff
path: root/test.c
blob: 4b86a0bfdb7be7480a4727267930e7c9fca532af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>
#include <stdlib.h>

extern int errno;
int main() {
	errno = 0;
	fopen("zzz","r");
	printf("%d\n",errno);
	//printf("hello\n");
	exit(0);
	    
}