git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@520 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 1999-08-13 05:45:20 +00:00
parent fcd020c830
commit 65a5162550
156 changed files with 21888 additions and 18301 deletions

8
dln.h
View file

@ -3,7 +3,6 @@
dln.h -
$Author$
$Revision$
$Date$
created at: Wed Jan 19 16:53:09 JST 1994
@ -14,17 +13,18 @@
#ifndef _
#ifndef __STDC__
# define _(args) ()
# define const
#else
# define _(args) args
#endif
#endif
char *dln_find_exe _((char*,char*));
char *dln_find_file _((char*,char*));
char *dln_find_exe _((const char*,const char*));
char *dln_find_file _((const char*,const char*));
#ifdef USE_DLN_A_OUT
extern char *dln_argv0;
#endif
void dln_load _((char*));
void dln_load _((const char*));
#endif