std.cfg: configure standard types
This commit is contained in:
parent
a4a6f3e1be
commit
977af89fa9
21
cfg/std.cfg
21
cfg/std.cfg
|
@ -182,7 +182,7 @@
|
|||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<arg nr="1"><not-null/></arg>
|
||||
<arg nr="2"><not-uninit/></arg>
|
||||
<arg nr="2"><not-uninit/></arg>
|
||||
<arg nr="3"><not-bool/><valid>0:</valid></arg>
|
||||
</function>
|
||||
<function name="mktime"><noreturn>false</noreturn><leak-ignore/><arg nr="1"><not-null/><not-uninit/></arg></function>
|
||||
|
@ -292,5 +292,24 @@
|
|||
|
||||
<function name="fwscanf"> <noreturn>false</noreturn> <formatstr scan="true"/> <arg nr="2"><formatstr/></arg> </function>
|
||||
<function name="swscanf"> <noreturn>false</noreturn> <formatstr scan="true"/> <arg nr="2"><formatstr/></arg> </function>
|
||||
|
||||
<podtype name="int8_t" sign="s" size="1"/>
|
||||
<podtype name="int16_t" sign="s" size="2"/>
|
||||
<podtype name="int32_t" sign="s" size="4"/>
|
||||
<podtype name="int64_t" sign="s" size="8"/>
|
||||
<podtype name="uint8_t" sign="u" size="1"/>
|
||||
<podtype name="uint16_t" sign="u" size="2"/>
|
||||
<podtype name="uint32_t" sign="u" size="4"/>
|
||||
<podtype name="uint64_t" sign="u" size="8"/>
|
||||
<podtype name="int_fast8_t" sign="s"/>
|
||||
<podtype name="int_fast16_t" sign="s"/>
|
||||
<podtype name="int_fast32_t" sign="s"/>
|
||||
<podtype name="int_fast64_t" sign="s"/>
|
||||
<podtype name="uint_fast8_t" sign="u"/>
|
||||
<podtype name="uint_fast16_t" sign="u"/>
|
||||
<podtype name="uint_fast32_t" sign="u"/>
|
||||
<podtype name="uint_fast64_t" sign="u"/>
|
||||
<podtype name="intptr_t" sign="s"/>
|
||||
<podtype name="uintptr_t" sign="u"/>
|
||||
</def>
|
||||
|
||||
|
|
Loading…
Reference in New Issue