* include/_mingw.h: Use only two underscores to uglify

__MINGW_ATTRIB_* macros.
	* include/stdlib.h: Adjust __MINGW_ATTRIB_* tokens.
	* includ/setjmp.h: Likewise.

	* include/sting.h: Add __MINGW_ATTRIB_PURE to locale-independent
	string functions.
	(_strdup, strdup): Add __MINGW_ATTRIB_MALLOC.
This commit is contained in:
Danny Smith
2004-07-26 23:45:03 +00:00
parent 2646298531
commit 756301b7de
3 changed files with 10 additions and 3 deletions

View File

@ -34,7 +34,7 @@ int vfscanf(FILE * __restrict__ stream, const char * __restrict__ format, va_lis
: "=a"(ret), "=c"(stream), "=d"(format)
: "1"(stream), "2"(format), "S"(arg),
"a"(&ret)
: "ebx");
: "ebx", "edi");
return ret;
}