mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-10 09:58:01 +00:00
Oops; forgot to add this file in r4913.
[originally from svn r4914]
[r4913 == 8c69ba0672
]
This commit is contained in:
parent
8c69ba0672
commit
c66ac86b91
15
notiming.c
Normal file
15
notiming.c
Normal file
@ -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;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user