diff options
author | David Hedbor <neotron@php.net> | 2000-03-06 19:27:59 +0000 |
---|---|---|
committer | David Hedbor <neotron@php.net> | 2000-03-06 19:27:59 +0000 |
commit | 42ca607e716a3b0425ef5669e2b22f379400f8be (patch) | |
tree | b2797df61630ce5acba89f528be617bd96717a5d | |
parent | 09ab7fc6ca2b93d233e1b0a89b5f503d11a8fc19 (diff) | |
download | php-git-42ca607e716a3b0425ef5669e2b22f379400f8be.tar.gz |
Use php_module_shutdown_wrapper as the shutdown function
-rw-r--r-- | sapi/roxen/roxen.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sapi/roxen/roxen.c b/sapi/roxen/roxen.c index 8b04a7fa7d..d219031b43 100644 --- a/sapi/roxen/roxen.c +++ b/sapi/roxen/roxen.c @@ -491,13 +491,11 @@ static int php_roxen_startup(sapi_module_struct *sapi_module) /* this structure is static (as in "it does not change") */ -void pike_module_exit(void); - static sapi_module_struct sapi_module = { "Roxen", php_module_startup, /* startup */ - pike_module_exit, /* shutdown */ + php_module_shutdown_wrapper, /* shutdown */ NULL, /* activate */ NULL, /* deactivate */ |