From c66ac86b91c2926b032074058991ae776ca806bd Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Sun, 28 Nov 2004 00:48:31 +0000 Subject: [PATCH] Oops; forgot to add this file in r4913. [originally from svn r4914] [r4913 == 8c69ba067266beedd7740132f8ae558cc6ebc641] --- notiming.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 notiming.c diff --git a/notiming.c b/notiming.c new file mode 100644 index 00000000..2d0fc5d5 --- /dev/null +++ b/notiming.c @@ -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; +}