]> git.sur5r.net Git - cc65/blobdiff - libsrc/common/mkdir.s
The spans do now contain the size of a span, no longer the end offset.
[cc65] / libsrc / common / mkdir.s
index c65f6d19729a0979b82f67eb81154253ce2239d5..55a98f058506ccb1ae73b0398b9dfe3b090f5957 100644 (file)
@@ -7,7 +7,7 @@
         .export         _mkdir
 
         .import         __sysmkdir
-        .import         oserrcheck
+        .import         __mappederrno
 
 
 ;--------------------------------------------------------------------------
@@ -15,6 +15,6 @@
 .proc   _mkdir
 
         jsr     __sysmkdir      ; 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