diff options
Diffstat (limited to 'gcc/gcc.c')
-rw-r--r-- | gcc/gcc.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/gcc/gcc.c b/gcc/gcc.c index 15064ebf66f..d488b4a35ae 100644 --- a/gcc/gcc.c +++ b/gcc/gcc.c @@ -65,15 +65,6 @@ extern int getrusage PROTO ((int, struct rusage *)); #define OBJECT_SUFFIX ".o" #endif -/* By default, colon separates directories in a path. */ -#ifndef PATH_SEPARATOR -#define PATH_SEPARATOR ':' -#endif - -#ifndef DIR_SEPARATOR -#define DIR_SEPARATOR '/' -#endif - #ifndef VMS /* FIXME: the location independence code for VMS is hairier than this, and hasn't been written. */ @@ -82,14 +73,6 @@ extern int getrusage PROTO ((int, struct rusage *)); #endif /* DIR_UP */ #endif /* VMS */ -/* Define IS_DIR_SEPARATOR. */ -#ifndef DIR_SEPARATOR_2 -# define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) -#else /* DIR_SEPARATOR_2 */ -# define IS_DIR_SEPARATOR(ch) \ - (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) -#endif /* DIR_SEPARATOR_2 */ - static char dir_separator_str[] = {DIR_SEPARATOR, 0}; #define obstack_chunk_alloc xmalloc |