1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-28 03:29:39 +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:
cuz 2001-01-10 19:10:05 +00:00
parent 46a2a610e1
commit 2e48ce195d
2 changed files with 3 additions and 3 deletions

View File

@ -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);
}

View File

@ -49,7 +49,7 @@
/* Structure describing the format */
typedef struct BinDesc_ BinDesc;
typedef struct BinDesc BinDesc;