1
0
mirror of https://github.com/KarolS/millfork.git synced 2024-12-23 23:30:22 +00:00

Remove temporary hacks

This commit is contained in:
Karol Stasiak 2019-08-05 11:05:40 +02:00
parent 98553d56c0
commit 154df77ad3

View File

@ -180,16 +180,12 @@ void __translate_st_to_errno() {
byte getbyte_safe() {
byte b
b = getchar()
garbage[garbage_index] = b
garbage_index += 1
__translate_st_to_errno()
return b
}
void putbyte_safe(byte b) {
putchar(b)
garbage[garbage_index] = b
garbage_index += 1
__translate_st_to_errno()
}