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 | |
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')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/defaults.h | 5 | ||||
-rw-r--r-- | gcc/system.h | 5 |
3 files changed, 10 insertions, 5 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4fda7dc..cc5a1ab 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Wed Sep 8 00:00:16 1999 Richard Henderson <rth@cygnus.com> + + * defaults.h (TARGET_ESC): Move ... + * system.h: ... here, where Linas had it in the first place. Silly me. + Tue Sep 7 23:46:35 1999 Linas Vepstas <linas@linas.org> * c-common.c: Use ISGRAPH, ISLOWER, toupper. diff --git a/gcc/defaults.h b/gcc/defaults.h index 05adff8..90d483f 100644 --- a/gcc/defaults.h +++ b/gcc/defaults.h @@ -169,8 +169,3 @@ do { fprintf (FILE, "\t%s\t", ASM_LONG); \ #ifndef PROMOTE_PROTOTYPES #define PROMOTE_PROTOTYPES 0 #endif - -/* Define a default escape character; its different for EBCDIC. */ -#ifndef TARGET_ESC -#define TARGET_ESC 033 -#endif 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 |