mirror of
https://github.com/xcat2/xNBA.git
synced 2024-12-14 23:31:39 +00:00
19 lines
200 B
C
19 lines
200 B
C
#include <curses.h>
|
|
#include <vsprintf.h>
|
|
|
|
/** @file
|
|
*
|
|
* MuCurses alert functions
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* Audible signal
|
|
*
|
|
* @ret rc return status code
|
|
*/
|
|
int beep ( void ) {
|
|
printf("\a");
|
|
return OK;
|
|
}
|