]> git.sur5r.net Git - cc65/commitdiff
Fixed a bug
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Wed, 27 Aug 2003 09:48:10 +0000 (09:48 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Wed, 27 Aug 2003 09:48:10 +0000 (09:48 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@2418 b7a2c559-68d2-44c3-8de9-860c34a00d81

doc/funcref.sgml
libsrc/common/_fopen.s
src/ld65/filepath.c

index 462bb9d4e28ec54eabbf81e32860e4ce15e844cb..7a27e41964626c7db4bd5537e5d5ba56b486ef8a 100644 (file)
@@ -2143,8 +2143,6 @@ associated with it. On error, -1 is returned and an error code is stored in
 <item>POSIX specifies an additional <tt/mode/ argument that may be passed to
 open, which is used as the permission mask when a new file is created. While
 cc65 allows to pass this argument, it is ignored.
-<item>The function is only available as fastcall function, so it may only
-be used in presence of a prototype.
 </itemize>
 <tag/Availability/POSIX
 <tag/See also/
index 9010139e4c3f8431b9065458606caec8e46701ca..da0e8d8d864a6ee486d280918102492fc0e9f9b1 100644 (file)
@@ -1,4 +1,4 @@
-;
+;                     
 ; Ullrich von Bassewitz, 22.11.2002
 ;
 ; FILE* __fastcall__ _fopen (const char* name, const char* mode, FILE* f);
@@ -23,7 +23,7 @@
 .proc   __fopen
 
         sta     file
-        stx     file            ; Save f
+        stx     file+1          ; Save f
 
 ; Get a pointer to the mode string
 
@@ -76,7 +76,7 @@ invmode:
         jmp     incsp4
 
 ; Mode string successfully parsed. Store the binary mode onto the stack in
-; the same place where the mode string pointer was before. The call open()
+; the same place where the mode string pointer was before. Then call open()
 
 modeok: ldy     #$00
         txa                     ; Mode -> A
index 37f7964d05d81a73e56d875bbe632fde692d4807..8db7357444c4e7b422ce5ab17df669e49faff1d6 100644 (file)
@@ -49,7 +49,7 @@
 
 /* If the standard library search path is not given, use a hardcoded one */
 #ifndef CC65_LIB
-#define CC65_LIB        "/usr/lib/cc65/lib/";
+#define CC65_LIB        "/usr/lib/cc65/lib/"
 #endif