posix.cfg: Added support for remove().

This commit is contained in:
orbitcowboy 2016-01-11 16:34:47 +01:00
parent 8cfd1fc8d5
commit e03e9fbbcf
1 changed files with 11 additions and 0 deletions

View File

@ -2520,10 +2520,21 @@ The function 'mktemp' is considered to be dangerous due to race conditions and s
<noreturn>false</noreturn>
<leak-ignore/>
<arg nr="1">
<not-uninit/>
<not-null/>
</arg>
<arg nr="2"/>
</function>
<!-- int remove(const char *pathname); -->
<function name="remove">
<use-retval/>
<noreturn>false</noreturn>
<leak-ignore/>
<arg nr="1">
<not-uninit/>
<not-null/>
</arg>
</function>
<memory>
<alloc init="true">strdup</alloc>
<alloc init="true">strndup</alloc>