repo.or.cz
/
coreboot2.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
soc/intel/xeon_sp/util: Enhance lock_pam0123
[coreboot2.git]
/
payloads
/
libpayload
/
curses
/
PDCurses
/
sdl1
/
pdcutil.c
blob
b2d84045ffe1af901684b9311af0092907718aa0
1
/* Public Domain Curses */
2
3
#include
"pdcsdl.h"
4
5
RCSID
(
"$Id: pdcutil.c,v 1.6 2008/07/14 04:24:52 wmcbrine Exp $"
)
6
7
void
PDC_beep
(
void
)
8
{
9
PDC_LOG
((
"PDC_beep() - called
\n
"
));
10
}
11
12
void
PDC_napms
(
int
ms
)
13
{
14
PDC_LOG
((
"PDC_napms() - called: ms=%d
\n
"
,
ms
));
15
16
PDC_update_rects
();
17
SDL_Delay
(
ms
);
18
}
19
20
const char
*
PDC_sysname
(
void
)
21
{
22
return
"SDL"
;
23
}