diff --git a/src/asm/fstack.c b/src/asm/fstack.c index 05e2d7b5..3afcc06b 100644 --- a/src/asm/fstack.c +++ b/src/asm/fstack.c @@ -52,7 +52,7 @@ filesize(char *s) FILE *f; ULONG size = 0; - if ((f = fopen(s, "rt")) != NULL) { + if ((f = fopen(s, "r")) != NULL) { fseek(f, 0, SEEK_END); size = ftell(f); fclose(f); @@ -247,7 +247,7 @@ fstk_RunInclude(char *tzFileName) fstk_FindFile(tzFileName); //printf("INCLUDING: %s\n", tzFileName); - if ((f = fopen(tzFileName, "rt")) != NULL) { + if ((f = fopen(tzFileName, "r")) != NULL) { pushcontext(); nLineNo = 1; nCurrentStatus = STAT_isInclude; @@ -383,7 +383,7 @@ fstk_Init(char *s) fstk_FindFile(tzFileName); pFileStack = NULL; - if ((pCurrentFile = fopen(tzFileName, "rt")) != NULL) { + if ((pCurrentFile = fopen(tzFileName, "r")) != NULL) { nMacroCount = 0; nCurrentStatus = STAT_isInclude; strcpy(tzCurrentFileName, tzFileName); diff --git a/src/link/mapfile.c b/src/link/mapfile.c index cdd60db5..10524e03 100644 --- a/src/link/mapfile.c +++ b/src/link/mapfile.c @@ -17,7 +17,7 @@ SLONG sfbank; void SetMapfileName(char *name) { - mf = fopen(name, "wt"); + mf = fopen(name, "w"); if (!mf) errx(5, "Unable to open mapfile for writing"); @@ -26,7 +26,7 @@ SetMapfileName(char *name) void SetSymfileName(char *name) { - sf = fopen(name, "wt"); + sf = fopen(name, "w"); if (!sf) errx(5, "Unable to open symfile for writing");