summaryrefslogtreecommitdiffstats
path: root/config/tm-gmtoff.c
blob: 543df480013b06db750c96f8ac23d5f6b67079e5 (plain)
1
2
3
4
5
6
7
8
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;
}