forked from OSchip/llvm-project
parent
766a54bde5
commit
8d5a4093f5
|
@ -658,7 +658,7 @@ LIBBUILTIN(vsnprintf, "ic*zcC*a", "fP:2:", "stdio.h", ALL_LANGUAGES)
|
|||
LIBBUILTIN(vsprintf, "ic*cC*a", "fP:1:", "stdio.h", ALL_LANGUAGES)
|
||||
LIBBUILTIN(scanf, "icC*.", "fs:0:", "stdio.h", ALL_LANGUAGES)
|
||||
LIBBUILTIN(fscanf, "iP*cC*.", "fs:1:", "stdio.h", ALL_LANGUAGES)
|
||||
LIBBUILTIN(sscanf, "ic*cC*.", "fs:1:", "stdio.h", ALL_LANGUAGES)
|
||||
LIBBUILTIN(sscanf, "icC*cC*.", "fs:1:", "stdio.h", ALL_LANGUAGES)
|
||||
LIBBUILTIN(vscanf, "icC*a", "fS:0:", "stdio.h", ALL_LANGUAGES)
|
||||
LIBBUILTIN(vfscanf, "iP*cC*a", "fS:1:", "stdio.h", ALL_LANGUAGES)
|
||||
LIBBUILTIN(vsscanf, "ic*cC*a", "fS:1:", "stdio.h", ALL_LANGUAGES)
|
||||
|
|
|
@ -7,7 +7,7 @@ typedef __WCHAR_TYPE__ wchar_t;
|
|||
|
||||
int fscanf(FILE * restrict, const char * restrict, ...) ;
|
||||
int scanf(const char * restrict, ...) ;
|
||||
int sscanf(char * restrict, const char * restrict, ...) ;
|
||||
int sscanf(const char * restrict, const char * restrict, ...) ;
|
||||
int my_scanf(const char * restrict, ...) __attribute__((__format__(__scanf__, 1, 2)));
|
||||
|
||||
int vscanf(const char * restrict, va_list);
|
||||
|
|
Loading…
Reference in New Issue