From 2e48ce195d99bf29887d75e4611daa51d1022213 Mon Sep 17 00:00:00 2001 From: cuz Date: Wed, 10 Jan 2001 19:10:05 +0000 Subject: [PATCH] Remove trailing underlines from struct names git-svn-id: svn://svn.cc65.org/cc65/trunk@597 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/ld65/bin.c | 4 ++-- src/ld65/bin.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ld65/bin.c b/src/ld65/bin.c index 5a22267e2..48bc5d65b 100644 --- a/src/ld65/bin.c +++ b/src/ld65/bin.c @@ -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); } diff --git a/src/ld65/bin.h b/src/ld65/bin.h index 5ed64676c..7b32a9fac 100644 --- a/src/ld65/bin.h +++ b/src/ld65/bin.h @@ -49,7 +49,7 @@ /* Structure describing the format */ -typedef struct BinDesc_ BinDesc; +typedef struct BinDesc BinDesc;