summaryrefslogtreecommitdiffstats
path: root/cpukit/libdl/dlfcn-shell.h
blob: 9383577d2563b014ac9ae48def299f71304e1153 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 *  COPYRIGHT (c) 2012 Chris Johns <chrisj@rtems.org>
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.org/license/LICENSE.
 */

#if !defined(_DLFCN_SHELL_H_)
#define _DLFCN_SHELL_H_

int shell_dlopen (int argc, char* argv[]);
int shell_dlclose (int argc, char* argv[]);
int shell_dlsym (int argc, char* argv[]);
int shell_dlcall (int argc, char* argv[]);

#endif