repo.or.cz
/
sdcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
struct / union in initializer, RFE #901.
[sdcc.git]
/
sdcc
/
support
/
regression
/
ports
/
host
/
support.c
blob
3921b47c65cbc7180b049e7936a39c6efca53eab
1
/** Host specific support routines.
2
*/
3
#include <stdio.h>
4
#include <stdlib.h>
5
6
void
7
_putchar
(
char
c
)
8
{
9
putchar
(
c
);
10
}
11
12
void
13
_initEmu
(
void
)
14
{
15
}
16
17
void
18
_exitEmu
(
void
)
19
{
20
exit
(
0
);
21
}