summaryrefslogtreecommitdiffstats
path: root/src/hci/mucurses/alert.c
blob: 833330a0a87891327844adb48596edcc861d15ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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;
}