mirror of
https://github.com/cc65/cc65.git
synced 2025-01-12 02:30:44 +00:00
Remove trailing underlines from struct names
git-svn-id: svn://svn.cc65.org/cc65/trunk@597 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
46a2a610e1
commit
2e48ce195d
@ -58,7 +58,7 @@
|
||||
|
||||
|
||||
|
||||
struct BinDesc_ {
|
||||
struct BinDesc {
|
||||
unsigned Undef; /* Count of undefined externals */
|
||||
FILE* F; /* Output file */
|
||||
const char* Filename; /* Name of output file */
|
||||
@ -102,7 +102,7 @@ static unsigned BinWriteExpr (ExprNode* E, int Signed, unsigned Size,
|
||||
/* Called from SegWrite for an expression. Evaluate the expression, check the
|
||||
* range and write the expression value to the file.
|
||||
*/
|
||||
{
|
||||
{
|
||||
/* There's a predefined function to handle constant expressions */
|
||||
return SegWriteConstExpr (((BinDesc*)Data)->F, E, Signed, Size);
|
||||
}
|
||||
|
@ -49,7 +49,7 @@
|
||||
|
||||
|
||||
/* Structure describing the format */
|
||||
typedef struct BinDesc_ BinDesc;
|
||||
typedef struct BinDesc BinDesc;
|
||||
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user