Oops; forgot to add this file in r4913.
authorsimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Sun, 28 Nov 2004 00:48:31 +0000 (00:48 +0000)
committersimon <simon@cda61777-01e9-0310-a592-d414129be87e>
Sun, 28 Nov 2004 00:48:31 +0000 (00:48 +0000)
git-svn-id: svn://svn.tartarus.org/sgt/putty@4914 cda61777-01e9-0310-a592-d414129be87e

notiming.c [new file with mode: 0644]

diff --git a/notiming.c b/notiming.c
new file mode 100644 (file)
index 0000000..2d0fc5d
--- /dev/null
@@ -0,0 +1,15 @@
+/*
+ * notiming.c: stub version of schedule_timer().
+ * 
+ * Used in key generation tools, which need the random number
+ * generator but don't want the hassle of calling noise_regular()
+ * at regular intervals - and don't _need_ it either, since they
+ * have their own rigorous and different means of noise collection.
+ */
+
+#include "putty.h"
+
+long schedule_timer(int ticks, timer_fn_t fn, void *ctx)
+{
+    return 0;
+}