Skip to content
Snippets Groups Projects
Commit 0ab7f0b7 authored by rswindell's avatar rswindell
Browse files

Don't define ASCII char constants if USE_XPDEV is defined.

parent 25ee4239
No related branches found
No related tags found
No related merge requests found
......@@ -42,6 +42,10 @@
/* Macros */
/**********/
#ifdef USE_XPDEV
#include "gen_defs.h"
#else
/* Control characters */
#define STX 0x02 /* Start of text ^B */
#define ETX 0x03 /* End of text ^C */
......@@ -53,6 +57,8 @@
#define ESC 0x1b /* Escape ^[ */
#define SP 0x20 /* Space */
#endif
#define DCD 0x8000 /* Data carrier detect bit in msr */
......
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