aboutsummaryrefslogtreecommitdiffstats
path: root/io.c
diff options
context:
space:
mode:
authorAndrew J. Schorr <aschorr@telemetry-investments.com>2012-05-19 23:45:07 -0400
committerAndrew J. Schorr <aschorr@telemetry-investments.com>2012-05-19 23:45:07 -0400
commitcdf892a07fa67c635997e41ee8fe175aaafb2431 (patch)
tree46245d7f88797b98dbb60e60b223b3da9ff13cd1 /io.c
parent0f2e51f9b18a1c4e203e0bd0ac3c68db9faa9b6d (diff)
downloadegawk-cdf892a07fa67c635997e41ee8fe175aaafb2431.tar.gz
egawk-cdf892a07fa67c635997e41ee8fe175aaafb2431.tar.bz2
egawk-cdf892a07fa67c635997e41ee8fe175aaafb2431.zip
Add -i option, append .awk if initial search fails, and allow -f repeats.
Diffstat (limited to 'io.c')
-rw-r--r--io.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/io.c b/io.c
index 1e8870ec..a9fb3455 100644
--- a/io.c
+++ b/io.c
@@ -2538,6 +2538,14 @@ find_source(const char *src, struct stat *stb, int *errcode, int is_extlib)
#undef EXTLIB_SUFFIX
}
+/*
+ * Try searching with .awk appended if the platform headers have not specified
+ * another suffix.
+ */
+#ifndef DEFAULT_FILETYPE
+#define DEFAULT_FILETYPE ".awk"
+#endif
+
#ifdef DEFAULT_FILETYPE
if (! do_traditional && path == NULL) {
char *file_awk;