mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 17:38:00 +00:00
b798230844
Now they're all called FooVtable, instead of a mixture of that and Foo_vtable.
12 lines
200 B
C
12 lines
200 B
C
/*
|
|
* Linking module for programs that do not support selection of backend
|
|
* (such as pterm).
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include "putty.h"
|
|
|
|
const struct BackendVtable *const backends[] = {
|
|
NULL
|
|
};
|