Removed underlines from structure names.
Moved the fragment type into its own module. git-svn-id: svn://svn.cc65.org/cc65/trunk@430 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -43,7 +43,7 @@
|
||||
/* common */
|
||||
#include "exprdefs.h"
|
||||
#include "filepos.h"
|
||||
|
||||
|
||||
/* ld65 */
|
||||
#include "objdata.h"
|
||||
|
||||
@@ -56,8 +56,8 @@
|
||||
|
||||
|
||||
/* Debug symbol structure */
|
||||
typedef struct DbgSym_ DbgSym;
|
||||
struct DbgSym_ {
|
||||
typedef struct DbgSym DbgSym;
|
||||
struct DbgSym {
|
||||
DbgSym* Next; /* Pool linear list link */
|
||||
unsigned Flags; /* Generic flags */
|
||||
ObjData* Obj; /* Object file that exports the name */
|
||||
@@ -92,4 +92,5 @@ void PrintDbgSymLabels (ObjData* O, FILE* F);
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user