mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-10 01:48:00 +00:00
d13547d504
While I'm in the mood for cleaning up the top-level directory here: all the 'nostuff.c' files have moved into a new 'stubs' directory, and I broke up be_misc.c into smaller modules that can live in 'utils'.
12 lines
324 B
C
12 lines
324 B
C
/*
|
|
* Stub definitions of the GSSAPI library list, for Unix pterm and
|
|
* any other application that needs the symbols defined but has no
|
|
* use for them.
|
|
*/
|
|
|
|
#include "putty.h"
|
|
|
|
const int ngsslibs = 0;
|
|
const char *const gsslibnames[1] = { "dummy" };
|
|
const struct keyvalwhere gsslibkeywords[1] = { { "dummy", 0, -1, -1 } };
|