mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
23 lines
447 B
ArmAsm
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
|
||
|
|
||
|
|