1
0
mirror of https://github.com/cc65/cc65.git synced 2024-10-01 00:57:11 +00:00

Removed useless __errno imports

git-svn-id: svn://svn.cc65.org/cc65/trunk@2657 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2003-11-13 00:12:56 +00:00
parent 6c78e0deab
commit 227f4a7bc2
5 changed files with 5 additions and 12 deletions

View File

@ -6,7 +6,6 @@
.export _atexit
.destructor doatexit, 5
.import __errno
.import callax
.include "errno.inc"

View File

@ -1,4 +1,4 @@
;
;
; Ullrich von Bassewitz, 31.05.1998
;
; Several small file stream functions
@ -6,7 +6,6 @@
.export _clearerr, _feof, _ferror, _fileno, _fflush
.import return0
.import __errno
.importzp ptr1
.include "_file.inc"

View File

@ -5,10 +5,7 @@
; /* Map an OS error to a system independent error code */
;
.export __maperrno
.import __errno
.import __oserror
.import __osmaperrno
.include "errno.inc"
.code

View File

@ -10,9 +10,8 @@
;
.export oserrcheck
.import __oserror
.import __osmaperrno
.import __errno
.include "errno.inc"
.proc oserrcheck
@ -32,4 +31,4 @@ ok: tax ; Make high byte also zero
.endproc

View File

@ -7,7 +7,6 @@
.export _time
.import __systime
.import __errno
.importzp ptr1, sreg, tmp1
.include "errno.inc"