diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-09-08 07:01:41 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-09-08 07:01:41 +0000 |
commit | 301893f9238b5d0065bbe9b5c4a6a2183341ff35 (patch) | |
tree | 7c05478f7082d272d208ce2f82cc7658e318c20e | |
parent | cbdcfdf2c801a42e439028d6668e7b03d09b1a44 (diff) | |
download | gcc-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
-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 4fda7dc983b..cc5a1ab2d28 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 05adff842d9..90d483f308e 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 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 |