Skip to content
Snippets Groups Projects
Commit b5684cfc authored by deuce's avatar deuce
Browse files

Fix putch() warning.

parent ef0f8ffb
No related branches found
No related tags found
No related merge requests found
......@@ -43,7 +43,12 @@
#endif
#include "ciowrap.h"
#define mswait(x) delay(x)
#define putch(x) _putch(x,TRUE)
#if defined(putch) && defined(NO_ECHOCHAR)
#undef putch
#endif
#if !defined(putch)
#define putch(x) _putch(x,TRUE)
#endif
#define clreol() clrtoeol()
#elif defined(_WIN32)
#include <share.h>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment