diff options
author | Alexander Neundorf <neundorf@kde.org> | 2007-08-09 18:26:10 (GMT) |
---|---|---|
committer | Alexander Neundorf <neundorf@kde.org> | 2007-08-09 18:26:10 (GMT) |
commit | 9bd32386c266c906c1a4c02964dfa68292c4ab12 (patch) | |
tree | 25084262740f6fad05068d4b8d0367180dfeead4 /Source/CTest/Curl/getdate.h | |
parent | 4b92b89664086e3b5e38e53b325aa88e0b42a6d4 (diff) | |
download | CMake-9bd32386c266c906c1a4c02964dfa68292c4ab12.zip CMake-9bd32386c266c906c1a4c02964dfa68292c4ab12.tar.gz CMake-9bd32386c266c906c1a4c02964dfa68292c4ab12.tar.bz2 |
COMP: this copy of curl is unused, the one in Utilities/cmcurl/ is used
Alex
Diffstat (limited to 'Source/CTest/Curl/getdate.h')
-rw-r--r-- | Source/CTest/Curl/getdate.h | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/Source/CTest/Curl/getdate.h b/Source/CTest/Curl/getdate.h deleted file mode 100644 index 85650e3..0000000 --- a/Source/CTest/Curl/getdate.h +++ /dev/null @@ -1,37 +0,0 @@ -/* -** Originally written by Steven M. Bellovin <smb@research.att.com> while -** at the University of North Carolina at Chapel Hill. Later tweaked by -** a couple of people on Usenet. Completely overhauled by Rich $alz -** <rsalz@bbn.com> and Jim Berets <jberets@bbn.com> in August, 1990. -** -** This code is in the public domain and has no copyright. -*/ - -# include "setup.h" - -#ifndef PARAMS -# if defined PROTOTYPES || (defined __STDC__ && __STDC__) -# define PARAMS(Args) Args -# else -# define PARAMS(Args) () -# endif -#endif - -#ifdef vms -# include <types.h> -# include <time.h> -#else -# include <sys/types.h> -# if TIME_WITH_SYS_TIME -# include <sys/time.h> -# include <time.h> -# else -# if HAVE_SYS_TIME_H -# include <sys/time.h> -# else -# include <time.h> -# endif -# endif -#endif /* defined (vms) */ - -time_t curl_getdate PARAMS ((const char *p, const time_t *now)); |