diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2012-11-14 20:17:27 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2012-11-14 20:17:27 +0200 |
commit | df1abb8c0d0b5855af8bb78ecf87f3511807905d (patch) | |
tree | eb5d6bd69a5842cc730946f552c8f323d6768afa /io.c | |
parent | fd17b777a698d2b40da34d461d090eda8b905789 (diff) | |
download | egawk-df1abb8c0d0b5855af8bb78ecf87f3511807905d.tar.gz egawk-df1abb8c0d0b5855af8bb78ecf87f3511807905d.tar.bz2 egawk-df1abb8c0d0b5855af8bb78ecf87f3511807905d.zip |
VMS updates. Should now build, pass some tests.
Diffstat (limited to 'io.c')
-rw-r--r-- | io.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -2523,7 +2523,9 @@ do_find_source(const char *src, struct stat *stb, int *errcode, path_info *pi) return NULL; } erealloc(path, char *, strlen(path) + strlen(src) + 2, "do_find_source"); +#ifndef VMS strcat(path, "/"); +#endif strcat(path, src); return path; } |