david/ipxe
Archived
1
0
This repository has been archived on 2020-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
ipxe/src/hci/mucurses/alert.c
Michael Brown 7aa689e3ba [mucurses] Add missing FILE_LICENCE declarations
Signed-off-by: Michael Brown <mcb30@ipxe.org>
2015-03-02 12:07:14 +00:00

21 lines
230 B
C

#include <curses.h>
#include <stdio.h>
/** @file
*
* MuCurses alert functions
*
*/
FILE_LICENCE ( GPL2_OR_LATER );
/**
* Audible signal
*
* @ret rc return status code
*/
int beep ( void ) {
printf("\a");
return OK;
}