]> git.sur5r.net Git - cc65/blob - libsrc/common/uname.s
atari5200: conio now uses just four colors altogether
[cc65] / libsrc / common / uname.s
1 ;
2 ; Ullrich von Bassewitz, 2003-08-12
3 ;
4 ; int __fastcall__ uname (struct utsname* buf);
5 ;
6
7         .export         _uname
8
9         .import         __sysuname
10         .import         __mappederrno
11
12
13 ;--------------------------------------------------------------------------
14
15 .proc   _uname
16
17         jsr     __sysuname      ; Call the machine specific function
18         jmp     __mappederrno   ; Store into _oserror, set errno, return 0/-1
19
20 .endproc
21
22