std.cfg: arguments for rename/remove must be zero-terminated strings
This commit is contained in:
parent
2e0b83551f
commit
f1e7d7894f
|
@ -4116,6 +4116,7 @@
|
|||
<arg nr="1">
|
||||
<not-null/>
|
||||
<not-uninit/>
|
||||
<strz/>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- int rename(const char *oldname, const char *newname); -->
|
||||
|
@ -4125,10 +4126,12 @@
|
|||
<arg nr="1">
|
||||
<not-null/>
|
||||
<not-uninit/>
|
||||
<strz/>
|
||||
</arg>
|
||||
<arg nr="2">
|
||||
<not-null/>
|
||||
<not-uninit/>
|
||||
<strz/>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- void rewind(FILE *stream); -->
|
||||
|
|
Loading…
Reference in New Issue