std.cfg: Added missing argument numbers to va_arg, va_copy, va_end and va_start.
This commit is contained in:
parent
3598f7f2ca
commit
f89c606031
|
@ -3593,21 +3593,25 @@ The obsolete function 'gets' is called. With 'gets' you'll get a buffer overrun
|
|||
<function name="va_arg">
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<arg nr="2"/>
|
||||
</function>
|
||||
<!-- void va_copy(va_list dest, va_list src); -->
|
||||
<function name="va_copy">
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<arg nr="2"/>
|
||||
</function>
|
||||
<!-- void va_end(va_list ap); -->
|
||||
<function name="va_end">
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<arg nr="1"/>
|
||||
</function>
|
||||
<!-- void va_start(va_list ap, paramN); -->
|
||||
<function name="va_start">
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<arg nr="2"/>
|
||||
</function>
|
||||
<!-- float wcstof(const wchar_t *s, wchar ** endp); -->
|
||||
<!-- double wcstod(const wchar_t *s, wchar ** endp); -->
|
||||
|
|
Loading…
Reference in New Issue