mirror of https://github.com/sipwise/klish.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
392 B
18 lines
392 B
/*
|
|
* plugin_builtin.c.in
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif /* HAVE_CONFIG_H */
|
|
|
|
#include <stdlib.h>
|
|
#include "clish/plugin.h"
|
|
|
|
/* Declare builtin plugin's init functions */
|
|
@CLISH_PLUGIN_BUILTIN_DEFS@
|
|
|
|
/* The array of builtin plugin's filled by configure script. */
|
|
clish_plugin_builtin_list_t clish_plugin_builtin_list[] = {@CLISH_PLUGIN_BUILTIN_LIST@ { NULL, NULL } };
|
|
|