forked from OSchip/llvm-project
14 lines
336 B
C
14 lines
336 B
C
#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 *);
|
|
|
|
char *strcpy(char *restrict s1, const char *restrict s2);
|
|
|