diff options
author | Richard Henderson <rth@cygnus.com> | 1999-09-08 00:01:41 -0700 |
---|---|---|
committer | Richard Henderson <rth@gcc.gnu.org> | 1999-09-08 00:01:41 -0700 |
commit | 64f8a718302d9cb98a8a138c2c0eb698aa40d981 (patch) | |
tree | 7c05478f7082d272d208ce2f82cc7658e318c20e /gcc/system.h | |
parent | 400ec270792adedd6950240d2adfb90cc8d0f26d (diff) | |
download | gcc-64f8a718302d9cb98a8a138c2c0eb698aa40d981.zip gcc-64f8a718302d9cb98a8a138c2c0eb698aa40d981.tar.gz gcc-64f8a718302d9cb98a8a138c2c0eb698aa40d981.tar.bz2 |
defaults.h (TARGET_ESC): Move ...
* defaults.h (TARGET_ESC): Move ...
* system.h: ... here, where Linas had it in the first place. Silly me.
From-SVN: r29194
Diffstat (limited to 'gcc/system.h')
-rw-r--r-- | gcc/system.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gcc/system.h b/gcc/system.h index aa44c1d..0f960af 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 |