mirror of
https://github.com/cc65/cc65.git
synced 2025-01-11 11:30:13 +00:00
250e4ed9e0
Allow to build ip65/date65.
9 lines
201 B
ArmAsm
9 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
|