diff options
author | apbianco <apbianco@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-03-14 05:01:05 +0000 |
---|---|---|
committer | apbianco <apbianco@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-03-14 05:01:05 +0000 |
commit | 4654e794323c05fcfabee95cb2bf334fb30a3873 (patch) | |
tree | bf1619873e76c17441a1423f1eaba6a4a64f054a /gcc/java/jcf-path.c | |
parent | 86220f453c768a8deb58678e4010a892011a2cce (diff) | |
download | gcc-4654e794323c05fcfabee95cb2bf334fb30a3873.tar.gz |
Added Java 1.1 language features.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@32517 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/java/jcf-path.c')
-rw-r--r-- | gcc/java/jcf-path.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/java/jcf-path.c b/gcc/java/jcf-path.c index 55715a15507..3e63bc5b988 100644 --- a/gcc/java/jcf-path.c +++ b/gcc/java/jcf-path.c @@ -34,6 +34,15 @@ The Free Software Foundation is independent of Sun Microsystems, Inc. */ #define GET_ENV_PATH_LIST(VAR,NAME) do { (VAR) = getenv (NAME); } while (0) #endif +/* By default, colon separates directories in a path. */ +#ifndef PATH_SEPARATOR +#define PATH_SEPARATOR ':' +#endif + +#ifndef DIR_SEPARATOR +#define DIR_SEPARATOR '/' +#endif + #ifndef DIR_UP #define DIR_UP ".." #endif |