mirror of
https://github.com/cc65/cc65.git
synced 2025-08-13 08:25:28 +00:00
Removed the Next pointer which is no longer necessary.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5126 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -65,7 +65,6 @@
|
|||||||
/* Library data structure */
|
/* Library data structure */
|
||||||
typedef struct Library Library;
|
typedef struct Library Library;
|
||||||
struct Library {
|
struct Library {
|
||||||
Library* Next;
|
|
||||||
unsigned Name; /* String id of the name */
|
unsigned Name; /* String id of the name */
|
||||||
FILE* F; /* Open file stream */
|
FILE* F; /* Open file stream */
|
||||||
LibHeader Header; /* Library header */
|
LibHeader Header; /* Library header */
|
||||||
@@ -93,7 +92,6 @@ static Library* NewLibrary (FILE* F, const char* Name)
|
|||||||
Library* L = xmalloc (sizeof (*L));
|
Library* L = xmalloc (sizeof (*L));
|
||||||
|
|
||||||
/* Initialize the fields */
|
/* Initialize the fields */
|
||||||
L->Next = 0;
|
|
||||||
L->Name = GetStringId (Name);
|
L->Name = GetStringId (Name);
|
||||||
L->F = F;
|
L->F = F;
|
||||||
L->Modules = EmptyCollection;
|
L->Modules = EmptyCollection;
|
||||||
|
Reference in New Issue
Block a user