summaryrefslogtreecommitdiffstats
path: root/crypto/kerberosIV/lib/kafs/dlfcn.h
diff options
context:
space:
mode:
authormarkm <markm@FreeBSD.org>2003-03-08 12:55:48 +0000
committermarkm <markm@FreeBSD.org>2003-03-08 12:55:48 +0000
commit508deb59f881236ef37872f9bd311690d6f5a52f (patch)
tree5248199756c9c4bedc55a990ad63d4d2cb595d51 /crypto/kerberosIV/lib/kafs/dlfcn.h
parent98c95b963a4c3a3fc5d30f7a902a7f28f001b2b8 (diff)
downloadFreeBSD-src-508deb59f881236ef37872f9bd311690d6f5a52f.zip
FreeBSD-src-508deb59f881236ef37872f9bd311690d6f5a52f.tar.gz
KerberosIV deorbit sequence: Re-entry. Thank you, faithful friend.
Enjoy your retirement in ports.
Diffstat (limited to 'crypto/kerberosIV/lib/kafs/dlfcn.h')
-rw-r--r--crypto/kerberosIV/lib/kafs/dlfcn.h46
1 files changed, 0 insertions, 46 deletions
diff --git a/crypto/kerberosIV/lib/kafs/dlfcn.h b/crypto/kerberosIV/lib/kafs/dlfcn.h
deleted file mode 100644
index 5671e9c..0000000
--- a/crypto/kerberosIV/lib/kafs/dlfcn.h
+++ /dev/null
@@ -1,46 +0,0 @@
-/*
- * @(#)dlfcn.h 1.4 revision of 95/04/25 09:36:52
- * This is an unpublished work copyright (c) 1992 HELIOS Software GmbH
- * 30159 Hannover, Germany
- */
-
-#ifndef __dlfcn_h__
-#define __dlfcn_h__
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/*
- * Mode flags for the dlopen routine.
- */
-#define RTLD_LAZY 1 /* lazy function call binding */
-#define RTLD_NOW 2 /* immediate function call binding */
-#define RTLD_GLOBAL 0x100 /* allow symbols to be global */
-
-/*
- * To be able to intialize, a library may provide a dl_info structure
- * that contains functions to be called to initialize and terminate.
- */
-struct dl_info {
- void (*init)(void);
- void (*fini)(void);
-};
-
-#if __STDC__ || defined(_IBMR2)
-void *dlopen(const char *path, int mode);
-void *dlsym(void *handle, const char *symbol);
-char *dlerror(void);
-int dlclose(void *handle);
-#else
-void *dlopen();
-void *dlsym();
-char *dlerror();
-int dlclose();
-#endif
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* __dlfcn_h__ */
OpenPOWER on IntegriCloud