]> git.sur5r.net Git - cc65/blobdiff - libsrc/common/rmdir.s
The spans do now contain the size of a span, no longer the end offset.
[cc65] / libsrc / common / rmdir.s
index 100f1a3fbe59a0024fa5aff08882eae5c5cf285b..84ae9a54c5a40cb5ee6799edd21b17ba90715f07 100644 (file)
@@ -7,7 +7,7 @@
         .export         _rmdir
 
         .import         __sysrmdir
-        .import         oserrcheck
+        .import         __mappederrno
 
 
 ;--------------------------------------------------------------------------
@@ -15,6 +15,6 @@
 .proc   _rmdir
 
         jsr     __sysrmdir      ; Call the machine specific function
-        jmp     oserrcheck      ; Store into _oserror, set errno, return 0/-1
+        jmp     __mappederrno   ; Store into _oserror, set errno, return 0/-1
 
 .endproc