]> git.sur5r.net Git - cc65/blobdiff - libsrc/common/uname.s
The spans do now contain the size of a span, no longer the end offset.
[cc65] / libsrc / common / uname.s
index d6fb484dd343a15e2c64aeaf40104b03d36c12a9..3c1b0840f26457700215bba9d2d54bfe87e04775 100644 (file)
@@ -7,7 +7,7 @@
         .export         _uname
 
         .import         __sysuname
-        .import         oserrcheck
+        .import         __mappederrno
 
 
 ;--------------------------------------------------------------------------
@@ -15,7 +15,7 @@
 .proc   _uname
 
         jsr     __sysuname      ; 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