1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-26 05:29:30 +00:00

Add comment about passing structs as params

git-svn-id: svn://svn.cc65.org/cc65/trunk@843 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2001-08-10 07:08:20 +00:00
parent 7da0da3cad
commit c8d206303f

View File

@ -367,7 +367,8 @@ and the one defined by the ISO standard:
an additional macro needed to access parameters in a variable
parameter list in a C function.
<p>
<item> Functions may not return structs. However, struct assignment *is*
<item> Functions may not return structs (or unions), and structs may not be
passed as parameters by value. However, struct assignment *is*
possible.
<p>
<item> Part of the C library is available only with fastcall calling