mirror of
https://github.com/cc65/cc65.git
synced 2026-04-23 23:17:45 +00:00
17 lines
281 B
ArmAsm
17 lines
281 B
ArmAsm
; tzset_time.s
|
|
;
|
|
; This file is part of
|
|
; cc65 - a freeware C compiler for 6502 based systems
|
|
;
|
|
; https://cc65.github.io
|
|
;
|
|
; See "LICENSE" file for legal information.
|
|
;
|
|
; void __fastcall__ tzset_time (time_t* time);
|
|
;
|
|
|
|
.export _tzset_time
|
|
|
|
_tzset_time:
|
|
rts
|