]> git.sur5r.net Git - cc65/blobdiff - src/common/filepos.h
Change data types to get a smaller memory footprint
[cc65] / src / common / filepos.h
index 7ccde3751c726073fc4afbb4bedf58fc925dbc21..dd41472f88b36a76c347192b42593658634ad09a 100644 (file)
 
 /* 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 */
 };