mirror of
https://github.com/cc65/cc65.git
synced 2025-08-09 13:25:06 +00:00
Added dummy clock_settime() for the Atari.
Allow to build ip65/date65.
This commit is contained in:
8
libsrc/atari/settime.s
Normal file
8
libsrc/atari/settime.s
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
;
|
||||||
|
; int clock_settime (clockid_t clk_id, const struct timespec *tp);
|
||||||
|
;
|
||||||
|
.include "errno.inc"
|
||||||
|
.export _clock_settime
|
||||||
|
_clock_settime:
|
||||||
|
lda #ENOSYS
|
||||||
|
jmp __directerrno
|
Reference in New Issue
Block a user