00001 #include <curses.h> 00002 #include <stdio.h> 00003 00004 /** @file 00005 * 00006 * MuCurses alert functions 00007 * 00008 */ 00009 00010 /** 00011 * Audible signal 00012 * 00013 * @ret rc return status code 00014 */ 00015 int beep ( void ) { 00016 printf("\a"); 00017 return OK; 00018 }