cc65/libsrc/atari/settime.s
Oliver Schmidt 250e4ed9e0 Added dummy clock_settime() for the Atari.
Allow to build ip65/date65.
2018-08-18 01:36:56 +02:00

8 lines
201 B
ArmAsm

;
; int clock_settime (clockid_t clk_id, const struct timespec *tp);
;
.include "errno.inc"
.export _clock_settime
_clock_settime:
lda #ENOSYS
jmp __directerrno