Oops; forgot to add this file in r4913.
[u/mdw/putty] / notiming.c
1 /*
2 * notiming.c: stub version of schedule_timer().
3 *
4 * Used in key generation tools, which need the random number
5 * generator but don't want the hassle of calling noise_regular()
6 * at regular intervals - and don't _need_ it either, since they
7 * have their own rigorous and different means of noise collection.
8 */
9
10 #include "putty.h"
11
12 long schedule_timer(int ticks, timer_fn_t fn, void *ctx)
13 {
14 return 0;
15 }