summaryrefslogtreecommitdiff
path: root/gcc/system.h
diff options
context:
space:
mode:
authorrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>1999-09-08 07:01:41 +0000
committerrth <rth@138bc75d-0d04-0410-961f-82ee72b054a4>1999-09-08 07:01:41 +0000
commit301893f9238b5d0065bbe9b5c4a6a2183341ff35 (patch)
tree7c05478f7082d272d208ce2f82cc7658e318c20e /gcc/system.h
parentcbdcfdf2c801a42e439028d6668e7b03d09b1a44 (diff)
downloadgcc-301893f9238b5d0065bbe9b5c4a6a2183341ff35.tar.gz
* defaults.h (TARGET_ESC): Move ...
* system.h: ... here, where Linas had it in the first place. Silly me. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@29194 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/system.h')
-rw-r--r--gcc/system.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/system.h b/gcc/system.h
index aa44c1d9646..0f960aff348 100644
--- a/gcc/system.h
+++ b/gcc/system.h
@@ -121,6 +121,11 @@ extern int fputs_unlocked PROTO ((const char *, FILE *));
host does not conform to Posix. */
#define ISDIGIT(c) ((unsigned) (c) - '0' <= 9)
+/* Define a default escape character; its different for EBCDIC. */
+#ifndef TARGET_ESC
+#define TARGET_ESC 033
+#endif
+
#ifdef HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif