/* 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 */