summaryrefslogtreecommitdiff
path: root/os400/dlfcn/dlfcn.h
diff options
context:
space:
mode:
Diffstat (limited to 'os400/dlfcn/dlfcn.h')
-rw-r--r--os400/dlfcn/dlfcn.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/os400/dlfcn/dlfcn.h b/os400/dlfcn/dlfcn.h
deleted file mode 100644
index 0cf691e..0000000
--- a/os400/dlfcn/dlfcn.h
+++ /dev/null
@@ -1,32 +0,0 @@
-/**
-*** dlopen(), dlclose() dlsym(), dlerror() emulation for OS/400.
-***
-*** See Copyright for the status of this software.
-***
-*** Author: Patrick Monnerat <pm@datasphere.ch>, DATASPHERE S.A.
-**/
-
-#ifndef _DLFCN_H_
-#define _DLFCN_H_
-
-
-/**
-*** Flags for dlopen().
-*** Ignored for OS400.
-**/
-
-#define RTLD_LAZY 000
-#define RTLD_NOW 001
-#define RTLD_GLOBAL 010
-
-
-/**
-*** Prototypes.
-**/
-
-extern void * dlopen(const char * filename, int flag);
-extern void * dlsym(void * handle, const char * symbol);
-extern const char * dlerror(void);
-extern int dlclose(void * handle);
-
-#endif