/
githubmirror
/
ipxe
Обзор
Документация
Войти
/
githubmirror
/
ipxe
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/hci/mucurses/alert.c
20 строк
238 B
Michael Brown
[legal] Relicense files under GPL2_OR_LATER_OR_UBDL
02 мар 2015, 17:17
02 мар 2015, 17:17
e24be56
Код
Авторство
О чём код?
#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; }