summaryrefslogtreecommitdiff
path: root/Utilities/cmcurl/getdate.h
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2005-06-24 09:02:17 -0400
committerAndy Cedilnik <andy.cedilnik@kitware.com>2005-06-24 09:02:17 -0400
commit7c730973bba620ba50e02fb1330e99c2230d3d8b (patch)
tree08e6f54fd0f1b53a52bbdbe29db25171ddf81526 /Utilities/cmcurl/getdate.h
parentc4036bd94240d4850703bbe62dbdcf3ff34bb3cd (diff)
downloadcmake-7c730973bba620ba50e02fb1330e99c2230d3d8b.tar.gz
ENH: Initial import
Diffstat (limited to 'Utilities/cmcurl/getdate.h')
-rw-r--r--Utilities/cmcurl/getdate.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/Utilities/cmcurl/getdate.h b/Utilities/cmcurl/getdate.h
new file mode 100644
index 0000000000..85650e3a07
--- /dev/null
+++ b/Utilities/cmcurl/getdate.h
@@ -0,0 +1,37 @@
+/*
+** 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));