/* Change REAL_VTM to the absolute path of the Perl command-line version vtm. * * When installed on cs March 8 2008, * I've put the perl script as /usr/local/bin/vtm_perl * and copied this compiled wrapper to /usr/local/bin/vtm . */ #define REAL_VTM "/usr/local/bin/vtm_perl" int main(int argc, char *argv[]){ execv(REAL_VTM, argv); }