core, pxe: Don't push on one stack and pop from the other in pxenv
[syslinux.git] / core / console.c
blob3b545bbd473dad0bc42f1d7ab8a1ddc611b32326
1 #include <stddef.h>
2 #include <com32.h>
3 #include <core.h>
4 #include <stdio.h>
5 #include <string.h>
7 void myputchar(int c)
9 if (c == '\n')
10 myputchar('\r');
12 writechr(c);
15 void myputs(const char *str)
17 while (*str)
18 myputchar(*str++);