diff options
author | marha <marha@users.sourceforge.net> | 2010-11-19 10:48:58 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2010-11-19 10:48:58 +0000 |
commit | 8fd6c61557d06a2434cf0e296df38f218ba2c186 (patch) | |
tree | 61e9672dfeacac466952ef9fc7b38ef21426b136 /tools/plink/time.c | |
parent | 20a8b976130e3b2cfff5c3364169e61ec10291f3 (diff) | |
download | vcxsrv-8fd6c61557d06a2434cf0e296df38f218ba2c186.tar.gz vcxsrv-8fd6c61557d06a2434cf0e296df38f218ba2c186.tar.bz2 vcxsrv-8fd6c61557d06a2434cf0e296df38f218ba2c186.zip |
Remove tools again. Should have done it with svn merge --reintegrate
Diffstat (limited to 'tools/plink/time.c')
-rw-r--r-- | tools/plink/time.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/tools/plink/time.c b/tools/plink/time.c deleted file mode 100644 index d873d44cc..000000000 --- a/tools/plink/time.c +++ /dev/null @@ -1,16 +0,0 @@ -/*
- * Portable implementation of ltime() for any ISO-C platform where
- * time_t behaves. (In practice, we've found that platforms such as
- * Windows and Mac have needed their own specialised implementations.)
- */
-
-#include <time.h>
-#include <assert.h>
-
-struct tm ltime(void)
-{
- time_t t;
- time(&t);
- assert (t != ((time_t)-1));
- return *localtime(&t);
-}
|