diff options
Diffstat (limited to 'config/has/tm-gmtoff.c')
-rw-r--r-- | config/has/tm-gmtoff.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/config/has/tm-gmtoff.c b/config/has/tm-gmtoff.c new file mode 100644 index 0000000..543df48 --- /dev/null +++ b/config/has/tm-gmtoff.c @@ -0,0 +1,9 @@ +// Copyright © Tavian Barnes <tavianator@tavianator.com> +// SPDX-License-Identifier: 0BSD + +#include <time.h> + +int main(void) { + struct tm tm = {0}; + return tm.tm_gmtoff; +} |