1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-30 16:29:58 +00:00
cc65/libsrc/common/uname.s
cuz 8bc9f321ec New uname function
git-svn-id: svn://svn.cc65.org/cc65/trunk@2278 b7a2c559-68d2-44c3-8de9-860c34a00d81
2003-08-12 14:24:34 +00:00

23 lines
447 B
ArmAsm

;
; 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