From 250e4ed9e0f2829ca48a895151f32b0fca249f90 Mon Sep 17 00:00:00 2001 From: Oliver Schmidt Date: Sat, 18 Aug 2018 01:36:56 +0200 Subject: [PATCH] Added dummy clock_settime() for the Atari. Allow to build ip65/date65. --- libsrc/atari/settime.s | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 libsrc/atari/settime.s diff --git a/libsrc/atari/settime.s b/libsrc/atari/settime.s new file mode 100644 index 000000000..698aa2a29 --- /dev/null +++ b/libsrc/atari/settime.s @@ -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 -- 2.39.2