1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-08 15:29:37 +00:00

Added dummy clock_settime() for the Atari.

Allow to build ip65/date65.
This commit is contained in:
Oliver Schmidt 2018-08-18 01:36:56 +02:00
parent fe5af26f9f
commit 250e4ed9e0

8
libsrc/atari/settime.s Normal file
View 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