summaryrefslogtreecommitdiff
path: root/sys/src/libc/9sys/tm2sec.c
blob: 1959e7980852fabf14de79180f3c3df3fae20bcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <u.h>
#include <libc.h>

long
tm2sec(Tm *tm)
{
	Tm tt;

	tt = *tm;
	/*
	 * The zone offset should be calculated,
	 * but old code may not init tz member.
	 * nil it out so we don't access junk.
	 * while we're at it, old code probably
	 * leaves junk in nsec.
	 */
	tt.nsec = 0;
	tt.tz = nil;
	return tmnorm(&tt);
}