time.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #ifndef _TIME_H
00029 #define _TIME_H
00030
00031
00032 #include <sys/param.h>
00033
00034 struct tm
00035 {
00036 int tm_sec;
00037 int tm_min;
00038 int tm_hour;
00039 int tm_mday;
00040 int tm_mon;
00041 int tm_year;
00042 int tm_wday;
00043 int tm_yday;
00044 int tm_isdst;
00045
00046 int tm_mon_length;
00047 int tm_year_length;
00048 };
00049
00050 typedef unsigned long time_t;
00051
00052
00053 extern time_t time(time_t *__timer);
00054
00055
00056
00057 extern struct tm *localtime_r(const time_t * __timer,
00058 struct tm * __tp);
00059
00060 extern void udelay (unsigned long usec);
00061
00062 #endif
|