std.cfg: Added support <returnValue> support for imaxabs(). windows.cfg: Added support for _abs64().

This commit is contained in:
orbitcowboy 2016-10-17 14:31:44 +02:00
parent 8a216ad87e
commit 56e75e5776
2 changed files with 13 additions and 0 deletions

View File

@ -21,6 +21,7 @@
<use-retval/>
<pure/>
<noreturn>false</noreturn>
<returnValue>arg1&gt;0?arg1:-arg1</returnValue>
<leak-ignore/>
<arg nr="1">
<not-uninit/>

View File

@ -2656,4 +2656,16 @@ HFONT CreateFont(
<not-uninit/>
</arg>
</function>
<!--__int64 _abs64( __int64 n);-->
<function name="_abs64">
<use-retval/>
<pure/>
<noreturn>false</noreturn>
<leak-ignore/>
<returnValue>arg1&gt;0?arg1:-arg1</returnValue>
<arg nr="1">
<not-uninit/>
<not-bool/>
</arg>
</function>
</def>