1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-05 06:28:57 +00:00

Change the type of the line number from unsigned long to unsigned since the

tools won't run on a 16 bit platform anyway. And if so, line numbers limited
to 65535 are probably the least problem.


git-svn-id: svn://svn.cc65.org/cc65/trunk@5167 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
uz 2011-08-15 16:08:15 +00:00
parent 7ed3fdc803
commit da307b9a13

View File

@ -47,9 +47,9 @@
/* Type of a file position */
typedef struct FilePos FilePos;
struct FilePos {
unsigned long Line; /* Line */
unsigned Col; /* Column */
unsigned Name; /* File */
unsigned Line; /* Line */
unsigned Col; /* Column */
unsigned Name; /* File */
};
/* Initializer for a FilePos */