Imported initial.
[fw/sdcc] / src / izt / gen.c
1 #include "izt.h"
2
3 void iemit(const char *format, ...)
4 {
5     va_list ap;
6     va_start(ap, format);
7
8     vprintf(format, ap);
9     printf("\n");
10
11     va_end(ap);
12 }