1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-29 21:31:53 +00:00

Comments added

This commit is contained in:
Mario Patiño 2013-08-08 18:23:48 +02:00
parent 9b157a5b1e
commit 7d9bba213b

View File

@ -138,18 +138,18 @@ extern unsigned char _dos_type;
/* The file stream implementation and the POSIX I/O functions will use the
* following variables to determine the file type and the aux type to use.
*/
extern unsigned char _filetype; /* Default 6 */
extern unsigned int _auxtype; /* Default 0 */
extern unsigned char _filetype; /* Default: 6 */
extern unsigned int _auxtype; /* Default: 0 */
extern struct {
struct {
unsigned day :5;
unsigned mon :4;
unsigned year :7;
} createdate;
} createdate; /* Current date: 0 */
struct {
unsigned char min;
unsigned char hour;
} createtime;
} createtime; /* Current time: 0 */
} _datetime;
/* The addresses of the static drivers */