aboutsummaryrefslogtreecommitdiff
path: root/test/Analysis/system-header-simulator.h
blob: 68c66574df83878a778f57c698a1842ac7c0dd5b (plain)
1
2
3
4
5
6
7
8
9
10
#pragma clang system_header

typedef struct _FILE FILE;
extern FILE *stdin;
int fscanf(FILE *restrict stream, const char *restrict format, ...);

// Note, on some platforms errno macro gets replaced with a function call.
extern int errno;

unsigned long strlen(const char *);