diff options
author | Paul Gilbert | 2019-05-17 13:51:43 -1000 |
---|---|---|
committer | Paul Gilbert | 2019-05-24 18:21:06 -0700 |
commit | 105a1b94bd9d5a0f10752e135671f4e9a4b0d8da (patch) | |
tree | 14a535ad171084e1908882a87b29fbd085ea93af /engines/glk/tads/tads2/os.h | |
parent | e83972f502142b4e6191b962a7be89829bd8d708 (diff) | |
download | scummvm-rg350-105a1b94bd9d5a0f10752e135671f4e9a4b0d8da.tar.gz scummvm-rg350-105a1b94bd9d5a0f10752e135671f4e9a4b0d8da.tar.bz2 scummvm-rg350-105a1b94bd9d5a0f10752e135671f4e9a4b0d8da.zip |
GLK: TADS2: Added code for output, run, various miscellaneous
Diffstat (limited to 'engines/glk/tads/tads2/os.h')
-rw-r--r-- | engines/glk/tads/tads2/os.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/engines/glk/tads/tads2/os.h b/engines/glk/tads/tads2/os.h index 5dcc83c935..666a5cb809 100644 --- a/engines/glk/tads/tads2/os.h +++ b/engines/glk/tads/tads2/os.h @@ -393,8 +393,7 @@ int os_get_zoneinfo_key(char *buf, size_t buflen); * timezone's clock settings, name(s), and rules for recurring annual * changes between standard time and daylight time, if applicable. */ -struct os_tzrule_t -{ +struct os_tzrule_t { /* * Day of year, 1-365, NEVER counting Feb 29; set to 0 if not used. * Corresponds to the "J" format in Unix TZ strings. (Called "Julian @@ -448,8 +447,7 @@ struct os_tzrule_t /* time of day, in seconds after midnight (e.g., 2AM is 120 == 2*60*60) */ int time; }; -struct os_tzinfo_t -{ +struct os_tzinfo_t { /* * The local offset from GMT, in seconds, for standard time and * daylight time in this zone. These values are positive for zones |