bsd.cfg: Added more types

This commit is contained in:
orbitcowboy 2020-12-10 14:50:30 +01:00
parent 1c99597b9f
commit c4190d1741
1 changed files with 5 additions and 0 deletions

View File

@ -300,6 +300,11 @@
<podtype name="u_short" sign="u" stdtype="short"/>
<podtype name="u_int" sign="u" stdtype="int"/>
<podtype name="u_long" sign="u" stdtype="long"/>
<!-- Sys V compatibility types -->
<podtype name="unchar" sign="u" stdtype="char"/>
<podtype name="ushort" sign="u" stdtype="short"/>
<podtype name="uint" sign="u" stdtype="int"/>
<podtype name="ulong" sign="u" stdtype="long"/>
<!-- https://linux.die.net/man/3/tailq_head -->
<define name="TAILQ_HEAD(name,type)" value="struct name { type *first; type *last; }"/>
</def>