repo.or.cz
/
tangerine.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
only bring in as many sdl things as are strictly necessary
[tangerine.git]
/
arch
/
all-mingw32
/
bootstrap
/
debug.c
blob
768ca33398b5bcfc83dbf8a03769f7865e04513e
1
#include <stdarg.h>
2
#include <stdio.h>
3
#include
"debug.h"
4
5
int
Host_VKPrintF
(
const char
*
fmt
,
va_list
args
)
6
{
7
return
vprintf
(
fmt
,
args
);
8
}
9
10
int
Host_PutChar
(
int
c
)
11
{
12
return
putchar
(
c
);
13
}