From 67d3b5846d84d4a2e5a31d4e268bc9d51495d7e0 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Thu, 3 Sep 2009 19:38:20 -0400 Subject: the C implementation properly loads the plugins, then creates a dependancy tree --- c/rvs.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'c/rvs.c') diff --git a/c/rvs.c b/c/rvs.c index 6997596..56162ac 100644 --- a/c/rvs.c +++ b/c/rvs.c @@ -26,9 +26,10 @@ const char *ver="0.8c"; const char *libexecdir="./plugins"; const char *plugin_conf="plugin.conf"; -int main (void) +int +main (void) { - load_plugins(libexecdir,plugin_conf); + struct plugin_tree *plugins=load_plugins(libexecdir,plugin_conf); return 0; } -- cgit v1.2.3-2-g168b