1998-01-16 07:13:05 -05:00
|
|
|
/************************************************
|
|
|
|
|
|
|
|
dln.h -
|
|
|
|
|
|
|
|
$Author$
|
|
|
|
$Date$
|
|
|
|
created at: Wed Jan 19 16:53:09 JST 1994
|
|
|
|
|
|
|
|
************************************************/
|
|
|
|
#ifndef DLN_H
|
|
|
|
#define DLN_H
|
|
|
|
|
1999-01-19 23:59:39 -05:00
|
|
|
#ifndef _
|
|
|
|
#ifndef __STDC__
|
|
|
|
# define _(args) ()
|
1999-08-13 01:45:20 -04:00
|
|
|
# define const
|
1999-01-19 23:59:39 -05:00
|
|
|
#else
|
|
|
|
# define _(args) args
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
1999-08-13 01:45:20 -04:00
|
|
|
char *dln_find_exe _((const char*,const char*));
|
|
|
|
char *dln_find_file _((const char*,const char*));
|
1998-01-16 07:13:05 -05:00
|
|
|
|
|
|
|
#ifdef USE_DLN_A_OUT
|
|
|
|
extern char *dln_argv0;
|
|
|
|
#endif
|
|
|
|
|
1999-08-13 01:45:20 -04:00
|
|
|
void dln_load _((const char*));
|
1998-01-16 07:13:05 -05:00
|
|
|
#endif
|