remove oserror from rp6502

This commit is contained in:
rumbledethumps
2025-09-26 17:19:50 -07:00
parent b5ff68a952
commit fdcb890bfd
24 changed files with 85 additions and 229 deletions

View File

@@ -6,7 +6,7 @@ int clock_gettimezone (time_t time, clockid_t clock_id, struct _timezone* tz)
int ax;
ria_set_ax (clock_id);
ria_push_long (time);
ax = ria_call_int_errno (RIA_OP_CLOCK_GETTIMEZONE);
ax = ria_call_int (RIA_OP_CLOCK_GETTIMEZONE);
if (ax >= 0) {
char i;
for (i = 0; i < sizeof (struct _timezone); i++) {