]> git.sur5r.net Git - cc65/commitdiff
Remove trailing underlines from struct names
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Wed, 10 Jan 2001 19:10:05 +0000 (19:10 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Wed, 10 Jan 2001 19:10:05 +0000 (19:10 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@597 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/ld65/bin.c
src/ld65/bin.h

index 5a22267e29309aded33860c22f77c7f172c09a0e..48bc5d65b2fecfc170d3c9a98d2b93aa87255a50 100644 (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);
 }
index 5ed64676c738dfe7a707c2ca28d1f6c78d1c0652..7b32a9fac86e40b02bddecd706ab007411feeba2 100644 (file)
@@ -49,7 +49,7 @@
 
 
 /* Structure describing the format */
-typedef struct BinDesc_ BinDesc;
+typedef struct BinDesc BinDesc;