/* Change REAL_VTM to the absolute path of the Perl command-line * version of the VTM. * * For example, if you installed the vtm.pm perl file in * /usr/local/bin/vtm.pl, then change the #define line to read * #define REAL_VTM "/usr/local/bin/vtm" */ #include #define REAL_VTM "/var/www/cs/htdocs/courses/spring2011/formal_languages/code/vtm/vtm.pl" extern char** environ; int main(int argc, char *argv[]){ execve(REAL_VTM, argv, environ); }