mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 17:38:00 +00:00
16 lines
224 B
C
16 lines
224 B
C
|
/*
|
||
|
* Stub version of enable_dit(), included in applications like
|
||
|
* PuTTYtel and pterm which completely leave out the 'crypto' source
|
||
|
* directory.
|
||
|
*/
|
||
|
|
||
|
#include "ssh.h"
|
||
|
|
||
|
#if HAVE_ARM_DIT
|
||
|
|
||
|
void enable_dit(void)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
#endif
|