Skip to content
Snippets Groups Projects
Commit f65d9f2a authored by Virgile Prevosto's avatar Virgile Prevosto
Browse files

[libc] avoid introducing garbled mix when dealing with va_list arguments

parent 9b33b6c1
No related branches found
No related tags found
No related merge requests found
...@@ -217,7 +217,9 @@ extern int sprintf(char * restrict s, ...@@ -217,7 +217,9 @@ extern int sprintf(char * restrict s,
extern int sscanf(const char * restrict s, extern int sscanf(const char * restrict s,
const char * restrict format, ...); const char * restrict format, ...);
/*@ assigns *stream \from format[..], arg; */ /*@ assigns *stream \from format[..], indirect: arg;
assigns \result \from indirect:format[..], indirect:arg;
*/
extern int vfprintf(FILE * restrict stream, extern int vfprintf(FILE * restrict stream,
const char * restrict format, const char * restrict format,
va_list arg); va_list arg);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment