00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
#ifdef HAVE_CONFIG_H
00018
# include <config.h>
00019
#endif
00020
00021
# ifndef PARAMS
00022
# if defined (__GNUC__) || __STDC__
00023
# define PARAMS(args) args
00024
# else
00025 # define PARAMS(args) ()
00026
# endif
00027
# endif
00028
00029
#if defined (vms)
00030
# include <types.h>
00031
# include <time.h>
00032
#else
00033
# include <sys/types.h>
00034
# ifdef TIME_WITH_SYS_TIME
00035
# include <sys/time.h>
00036
# include <time.h>
00037
# else
00038
# ifdef HAVE_SYS_TIME_H
00039
# include <sys/time.h>
00040
# else
00041
# include <time.h>
00042
# endif
00043
# endif
00044
#endif
00045
00046 time_t get_date
PARAMS ((
const char *p,
const time_t *now));