From: Richard Henderson Date: Wed, 8 Sep 1999 07:01:41 +0000 (-0700) Subject: defaults.h (TARGET_ESC): Move ... X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=64f8a718302d9cb98a8a138c2c0eb698aa40d981;p=gcc.git 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 --- 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 + + * 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 * 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 #endif