Go to the source code of this file.
Functions | |
void | program_info (void) |
void | main_loop (void) |
void | cleanup (void) |
void | sig_int () |
void | sig_quit () |
|
|
|
|
|
|
|
Definition at line 118 of file main.c. References mux_version. Referenced by main(). 00119 {
00120 fprintf(stderr, "\n\n%s: Caught SIGINT. Exiting.\n\n", mux_version);
00121 exit(1);
00122 }
|
|
Definition at line 124 of file main.c. References mux_version. Referenced by main(). 00125 {
00126 fprintf(stderr, "\n\n%s: Caught SIGQUIT. Exiting.\n\n", mux_version);
00127 exit(1);
00128 }
|