aboutsummaryrefslogtreecommitdiff
path: root/backends/wince/missing/time.h
blob: 40c2894dcacb99243a839790a8c71bb169c5ee44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* Header is not present in Windows CE SDK */

#ifndef A800_TIME_H
#define A800_TIME_H

#include <stdlib.h>

struct tm
{
	short tm_year;
	short tm_mon;
	short tm_mday;
	short tm_wday;
	short tm_hour;
	short tm_min;
	short tm_sec;
};

time_t time(time_t* dummy);
struct tm* localtime(time_t* dummy);

unsigned int clock();

#endif