avr.cfg: Added more podtypes.

This commit is contained in:
orbitcowboy 2014-06-17 13:04:48 +02:00
parent 5a4cf3be53
commit 11cf4d3215
1 changed files with 3 additions and 1 deletions

View File

@ -4,6 +4,8 @@
<!-- Integer types capable of holding object pointers -->
<podtype name="intptr_t" sign="s" size="2"/>
<podtype name="uintptr_t" sign="u" size="2"/>
<podtype name="int_farptr_t" sign="s" size="4"/>
<podtype name="uint_farptr_t" sign="u" size="4"/>
<!-- Minimum-width integer types -->
<podtype name="int_least8_t" sign="s" size="1"/>
<podtype name="uint_least8_t" sign="u" size="1"/>
@ -15,5 +17,5 @@
<podtype name="uint_least64_t" sign="u" size="8"/>
<!-- Greatest-width integer types -->
<podtype name="intmax_t" sign="s" size="8"/>
<podtype name="uintmax_t" sign="u" size="8"/>
<podtype name="uintmax_t" sign="u" size="8"/>
</def>