OSDN Git Service

Modify features and documents for 1.98b the urgent security release.
[ffftp/ffftp.git] / contrib / putty / TIME.C
diff --git a/contrib/putty/TIME.C b/contrib/putty/TIME.C
deleted file mode 100644 (file)
index d873d44..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-/*\r
- * Portable implementation of ltime() for any ISO-C platform where\r
- * time_t behaves. (In practice, we've found that platforms such as\r
- * Windows and Mac have needed their own specialised implementations.)\r
- */\r
-\r
-#include <time.h>\r
-#include <assert.h>\r
-\r
-struct tm ltime(void)\r
-{\r
-    time_t t;\r
-    time(&t);\r
-    assert (t != ((time_t)-1));\r
-    return *localtime(&t);\r
-}\r