1 /*****************************************************************************
2    Major portions of this software are copyrighted by the Medical College
3    of Wisconsin, 1994-2000, and are released under the Gnu General Public
4    License, Version 2.  See the file README.Copyright for details.
5 ******************************************************************************/
6 
7 #include "afni.h"
8 
9 #ifndef ALLOW_PLUGINS
10 #  error "Plugins not properly set up -- see machdep.h"
11 #endif
12 
13 DEFINE_PLUGIN_PROTOTYPE
14 
PLUGIN_init(int ncall)15 PLUGIN_interface * PLUGIN_init(int ncall)
16 {
17    return NULL;
18 }
19 
20