mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 17:38:00 +00:00
16 lines
417 B
C
16 lines
417 B
C
|
/*
|
||
|
* 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;
|
||
|
}
|