source:
bootcd/isolinux/syslinux-6.03/gpxe/src/hci/mucurses/alert.c
Last change on this file was e16e8f2, checked in by , 3 years ago | |
---|---|
|
|
File size: 197 bytes |
Line | |
---|---|
1 | #include <curses.h> |
2 | #include <stdio.h> |
3 | |
4 | /** @file |
5 | * |
6 | * MuCurses alert functions |
7 | * |
8 | */ |
9 | |
10 | /** |
11 | * Audible signal |
12 | * |
13 | * @ret rc return status code |
14 | */ |
15 | int beep ( void ) { |
16 | printf("\a"); |
17 | return OK; |
18 | } |
Note: See TracBrowser
for help on using the repository browser.