New uname function
git-svn-id: svn://svn.cc65.org/cc65/trunk@2278 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -144,6 +144,7 @@ S_OBJS = _cwd.o \
|
|||||||
time.o \
|
time.o \
|
||||||
tolower.o \
|
tolower.o \
|
||||||
toupper.o \
|
toupper.o \
|
||||||
|
uname.o \
|
||||||
unlink.o \
|
unlink.o \
|
||||||
vfprintf.o \
|
vfprintf.o \
|
||||||
vprintf.o \
|
vprintf.o \
|
||||||
|
|||||||
22
libsrc/common/uname.s
Normal file
22
libsrc/common/uname.s
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
;
|
||||||
|
; Ullrich von Bassewitz, 2003-08-12
|
||||||
|
;
|
||||||
|
; int __fastcall__ uname (struct utsname* buf);
|
||||||
|
;
|
||||||
|
|
||||||
|
.export _uname
|
||||||
|
|
||||||
|
.import __sysuname
|
||||||
|
.import oserrcheck
|
||||||
|
|
||||||
|
|
||||||
|
;--------------------------------------------------------------------------
|
||||||
|
|
||||||
|
.proc _uname
|
||||||
|
|
||||||
|
jsr __sysuname ; Call the machine specific function
|
||||||
|
jmp oserrcheck ; Store into _oserror, set errno, return 0/-1
|
||||||
|
|
||||||
|
.endproc
|
||||||
|
|
||||||
|
|
||||||
Reference in New Issue
Block a user