49 lines
613 B
C
49 lines
613 B
C
|
/*
|
||
|
* time.h
|
||
|
*
|
||
|
* Struct and function declarations for dealing with time.
|
||
|
*/
|
||
|
|
||
|
#ifndef _TIME_H_
|
||
|
#define _TIME_H_
|
||
|
|
||
|
#include "_ansi.h"
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#ifndef NULL
|
||
|
#define NULL 0
|
||
|
#endif
|
||
|
|
||
|
#ifndef _CLOCKS_PER_SEC_
|
||
|
#define _CLOCKS_PER_SEC_ 1000
|
||
|
#endif
|
||
|
|
||
|
#define CLOCKS_PER_SEC _CLOCKS_PER_SEC_
|
||
|
#define CLK_TCK CLOCKS_PER_SEC
|
||
|
#define __need_size_t
|
||
|
#include <stddef.h>
|
||
|
|
||
|
#include <sys/types.h>
|
||
|
|
||
|
struct tm
|
||
|
{
|
||
|
int tm_sec;
|
||
|
int tm_min;
|
||
|
int tm_hour;
|
||
|
int tm_mday;
|
||
|
int tm_mon;
|
||
|
int tm_year;
|
||
|
int tm_wday;
|
||
|
int tm_yday;
|
||
|
int tm_isdst;
|
||
|
};
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
#endif /* _TIME_H_ */
|
||
|
|