version 1.2, 2025/02/28 20:51:20
|
version 1.4, 2025/03/09 15:20:18
|
Line 15
|
Line 15
|
* freem interpreter proper |
* freem interpreter proper |
* |
* |
* |
* |
* Author: Serena Willis <jpw@coherent-logic.com> |
* Author: Serena Willis <snw@coherent-logic.com> |
* Copyright (C) 1998 MUG Deutschland |
* Copyright (C) 1998 MUG Deutschland |
* Copyright (C) 2020 Coherent Logic Development LLC |
* Copyright (C) 2020 Coherent Logic Development LLC |
* |
* |
Line 2021 set10:
|
Line 2021 set10:
|
goto err; |
goto err; |
} |
} |
|
|
sec += day * 86400 + timezone; |
sec += day * 86400 + FreeM_timezone; |
day = timezone; |
day = FreeM_timezone; |
|
|
sh_ts.tv_sec = sec; |
sh_ts.tv_sec = sec; |
|
|
Line 2042 set10:
|
Line 2042 set10:
|
clock = time (0L); |
clock = time (0L); |
ctdata = localtime (&clock); |
ctdata = localtime (&clock); |
|
|
if (day -= (timezone = ctdata->tm_tzadj)) { |
if (day -= (FreeM_timezone = ctdata->tm_tzadj)) { |
sec -= day; |
sec -= day; |
tzoffset += day; |
tzoffset += day; |
stime (&sec); |
stime (&sec); |