]> git.sur5r.net Git - cc65/commitdiff
Moved file type variables to apple2_filetype.h
authorBill Chatfield <bill_chatfield@yahoo.com>
Fri, 28 Jul 2017 16:09:58 +0000 (12:09 -0400)
committerGitHub <noreply@github.com>
Fri, 28 Jul 2017 16:09:58 +0000 (12:09 -0400)
include/apple2.h

index a2150c173729b777749680f5b8f7319ae929973d..e730236936e58836ccf193907a06fbd975384992 100644 (file)
@@ -137,11 +137,9 @@ 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, aux type and creation time
-** stamp to use.
+** following struct to set the date and time stamp on files. This specificially
+** applies to the open and fopen functions.
 */
-extern unsigned char _filetype;  /* Default: 6 */
-extern unsigned int _auxtype;    /* Default: 0 */
 extern struct {
     struct {
         unsigned day  :5;