summaryrefslogtreecommitdiff
path: root/ext/standard/php_assert.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/php_assert.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/php_assert.h')
-rw-r--r--ext/standard/php_assert.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/ext/standard/php_assert.h b/ext/standard/php_assert.h
index a5a50f6b22..dbb8daa393 100644
--- a/ext/standard/php_assert.h
+++ b/ext/standard/php_assert.h
@@ -21,8 +21,12 @@
#ifndef _PHP_ASSERT_H
#define _PHP_ASSERT_H
-extern zend_module_entry assert_module_entry;
-#define phpext_assert_ptr &assert_module_entry
-
+PHP_MINIT_FUNCTION(assert);
+PHP_MSHUTDOWN_FUNCTION(assert);
+PHP_RINIT_FUNCTION(assert);
+PHP_RSHUTDOWN_FUNCTION(assert);
+PHP_MINFO_FUNCTION(assert);
+PHP_FUNCTION(assert);
+PHP_FUNCTION(assert_options);
#endif /* _PHP_ASSERT_H */