summaryrefslogtreecommitdiff
path: root/ext/standard/dl.h
diff options
context:
space:
mode:
authorStig Bakken <ssb@php.net>2000-03-06 20:37:11 +0000
committerStig Bakken <ssb@php.net>2000-03-06 20:37:11 +0000
commit99e0b36321236c1bcf9d60c1e3ed07050b55a20f (patch)
tree624ad6ac28695d278db7a783626e44177a7d3924 /ext/standard/dl.h
parent031808cd1b0f584b9c37af5fc7edecf63977da10 (diff)
downloadphp-git-99e0b36321236c1bcf9d60c1e3ed07050b55a20f.tar.gz
@Cleaned up extension namespace (Stig)
Cleaned up extension namespace, and changed ext/standard into one single extension.
Diffstat (limited to 'ext/standard/dl.h')
-rw-r--r--ext/standard/dl.h13
1 files changed, 1 insertions, 12 deletions
diff --git a/ext/standard/dl.h b/ext/standard/dl.h
index 399aa0bc51..1c9be24f5b 100644
--- a/ext/standard/dl.h
+++ b/ext/standard/dl.h
@@ -37,25 +37,14 @@
void php_dl(pval *file,int type,pval *return_value);
-
#ifdef HAVE_LIBDL
-extern zend_module_entry dl_module_entry;
-#define dl_module_ptr &dl_module_entry
-
/* dynamic loading functions */
-void dl(INTERNAL_FUNCTION_PARAMETERS);
-extern PHP_MINIT_FUNCTION(dl);
-extern PHP_MSHUTDOWN_FUNCTION(dl);
-extern PHP_RSHUTDOWN_FUNCTION(dl);
+PHP_FUNCTION(dl);
PHP_MINFO_FUNCTION(dl);
#else
-#define dl_module_ptr NULL
-
#endif
-#define phpext_dl_ptr dl_module_ptr
-
#endif /* _DL_H */