* src/mcs51/gen.c (outBitC, genRet): used IS_OP_RUONLY,
[fw/sdcc] / support / regression / ports / host / support.c
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 }