Sign in
qemu
/
ipxe
/
0aa2e4ec963597794dd8f8b36f77f4d0cf4e03c8
/
.
/
src
/
hci
/
mucurses
/
alert.c
blob: 7dc61c222320f35803838cfca85154ce1a6f814e [
file
] [
log
] [
blame
]
#include
<curses.h>
#include
<stdio.h>
/** @file
*
* MuCurses alert functions
*
*/
FILE_LICENCE
(
GPL2_OR_LATER_OR_UBDL
);
/**
* Audible signal
*
* @ret rc return status code
*/
int
beep
(
void
)
{
printf
(
"\a"
);
return
OK
;
}