summaryrefslogtreecommitdiff
path: root/dln.h
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-05-07 21:43:54 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-05-07 21:43:54 +0000
commit4264ca9436a7b1496dbd6c9ca6e2e043f0c48630 (patch)
tree9c152e1a97a38c069d33785719148e5723278694 /dln.h
parent86afcfe4021d3ee7a9d290f2b351ae9e7aa52021 (diff)
* dln.c (dln_find_exe_r, dln_find_file_r): reentrant versions.
* file.c (rb_find_file_ext, rb_find_file), process.c (proc_exec_v), (rb_proc_exec, proc_spawn_v, proc_spawn), ruby.c (process_options): use reentrant versions. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16319 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'dln.h')
-rw-r--r--dln.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/dln.h b/dln.h
index 90d76aa90a..aee4c8fe43 100644
--- a/dln.h
+++ b/dln.h
@@ -30,6 +30,8 @@
char *dln_find_exe(const char*,const char*);
char *dln_find_file(const char*,const char*);
+char *dln_find_exe_r(const char*,const char*,char*,int);
+char *dln_find_file_r(const char*,const char*,char*,int);
#ifdef USE_DLN_A_OUT
extern char *dln_argv0;