1
0
mirror of https://github.com/cc65/cc65.git synced 2024-10-01 00:57:11 +00:00

Cosmetic change

git-svn-id: svn://svn.cc65.org/cc65/trunk@1226 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2002-04-08 18:35:58 +00:00
parent e0d9f2817e
commit 3bf4a3a735

View File

@ -33,7 +33,7 @@
#ifndef SCANNER_H
#ifndef SCANNER_H
#define SCANNER_H
@ -120,7 +120,7 @@ typedef enum {
/* Mapping table entry, special identifier --> token */
typedef struct IdentTok IdentTok;
struct IdentTok_ {
struct IdentTok {
const char* Ident; /* Identifier */
cfgtok_t Tok; /* Token for identifier */
};