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