OSDN Git Service

FIRST REPOSITORY
[eos/hostdependOTHERS.git] / I386LINUX / util / I386LINUX / include / ruby / dln.h
1 /**********************************************************************
2
3   dln.h -
4
5   $Author: tacyas $
6   $Date: 2002/02/01 06:39:40 $
7   created at: Wed Jan 19 16:53:09 JST 1994
8
9   Copyright (C) 1993-2000 Yukihiro Matsumoto
10
11 **********************************************************************/
12
13 #ifndef DLN_H
14 #define DLN_H
15
16 #ifndef _
17 #ifndef __STDC__
18 # define _(args) ()
19 # define const
20 #else
21 # define _(args) args
22 #endif
23 #endif
24
25 char *dln_find_exe _((const char*,const char*));
26 char *dln_find_file _((const char*,const char*));
27
28 #ifdef USE_DLN_A_OUT
29 extern char *dln_argv0;
30 #endif
31
32 void *dln_load _((const char*));
33 #endif