mirror of
https://github.com/cc65/cc65.git
synced 2024-12-24 11:31:31 +00:00
Change data types to get a smaller memory footprint
git-svn-id: svn://svn.cc65.org/cc65/trunk@2595 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
64c5165a5b
commit
e7df2d5d75
@ -46,10 +46,10 @@
|
||||
|
||||
/* Type of a file position */
|
||||
typedef struct FilePos FilePos;
|
||||
struct FilePos {
|
||||
struct FilePos {
|
||||
unsigned long Line; /* Line */
|
||||
unsigned Col; /* Column */
|
||||
unsigned Name; /* File */
|
||||
unsigned short Col; /* Column */
|
||||
unsigned short Name; /* File */
|
||||
};
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user