mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-16 23:19:49 +00:00
cff30724fb
svn-id: r3495
25 lines
330 B
C
25 lines
330 B
C
/* 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
|