source: bootcd/isolinux/syslinux-6.03/gpxe/src/hci/mucurses/alert.c @ 26ffad7

Last change on this file since 26ffad7 was e16e8f2, checked in by Edwin Eefting <edwin@datux.nl>, 3 years ago

bootstuff

  • Property mode set to 100644
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 */
15int beep ( void ) {
16        printf("\a");
17        return OK;
18}
Note: See TracBrowser for help on using the repository browser.