/********************************* * * CS 388A Assignment 3 * (John Barron) * * 1999-11-21 * * Dan Fraser, Student 1219229 * * This program loads a knots file and draws funky * cubic b-splines and bezier curves. * * *********************************/ #include "globals.h" int main(int argc, char *argv[]) { /* setup our widgets (see setup_widgets.c) */ setup_widgets(argc, argv); /* and give control to X */ XtMainLoop(); /* if we exit this way, something went seriously wrong. */ return 1; }