Browse Source

add ifdef WIN mdport

metaverse
ca333 5 years ago
committed by GitHub
parent
commit
6ca1613add
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/cc/rogue/mdport.c

4
src/cc/rogue/mdport.c

@ -705,7 +705,9 @@ md_erasechar()
#elif defined(VERASE)
return(_tty.c_cc[VERASE]); /* process erase character */
#else
#ifndef __MINGW32__
return(_tty.sg_erase); /* process erase character */
#endif
#endif
}
@ -717,7 +719,9 @@ md_killchar()
#elif defined(VKILL)
return(_tty.c_cc[VKILL]);
#else
#ifndef __MINGW32__
return(_tty.sg_kill);
#endif
#endif
}

Loading…
Cancel
Save