Commit 64f8a718 by Richard Henderson Committed by Richard Henderson

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
parent 400ec270
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> Tue Sep 7 23:46:35 1999 Linas Vepstas <linas@linas.org>
* c-common.c: Use ISGRAPH, ISLOWER, toupper. * c-common.c: Use ISGRAPH, ISLOWER, toupper.
......
...@@ -169,8 +169,3 @@ do { fprintf (FILE, "\t%s\t", ASM_LONG); \ ...@@ -169,8 +169,3 @@ do { fprintf (FILE, "\t%s\t", ASM_LONG); \
#ifndef PROMOTE_PROTOTYPES #ifndef PROMOTE_PROTOTYPES
#define PROMOTE_PROTOTYPES 0 #define PROMOTE_PROTOTYPES 0
#endif #endif
/* Define a default escape character; its different for EBCDIC. */
#ifndef TARGET_ESC
#define TARGET_ESC 033
#endif
...@@ -121,6 +121,11 @@ extern int fputs_unlocked PROTO ((const char *, FILE *)); ...@@ -121,6 +121,11 @@ extern int fputs_unlocked PROTO ((const char *, FILE *));
host does not conform to Posix. */ host does not conform to Posix. */
#define ISDIGIT(c) ((unsigned) (c) - '0' <= 9) #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 #ifdef HAVE_SYS_TYPES_H
#include <sys/types.h> #include <sys/types.h>
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment