Try to append executable suffixes if not having extension on OS/2

This commit is contained in:
KO Myung-Hun
2015-05-07 12:59:55 +09:00
parent 8f633da789
commit 5ed2481df2
4 changed files with 152 additions and 1 deletions

5
sh.h
View File

@@ -1920,6 +1920,11 @@ char *strdup_i(const char *, Area *);
char *strndup_i(const char *, size_t, Area *);
#endif
int unbksl(bool, int (*)(void), void (*)(int));
#ifdef __OS2__
/* os2.c */
int access_ex(int (*)(const char *, int), const char *, int);
const char *real_exec_name(const char *);
#endif
/* shf.c */
struct shf *shf_open(const char *, int, int, int);
struct shf *shf_fdopen(int, int, struct shf *);