diff options
| author | Andrey Hristov <andrey@php.net> | 2010-01-08 18:52:08 +0000 |
|---|---|---|
| committer | Andrey Hristov <andrey@php.net> | 2010-01-08 18:52:08 +0000 |
| commit | b1ac37716302c2bbc7c88b7dbf6b01a88d01f661 (patch) | |
| tree | cca38b03a7a21afe9b963d4cf2e89189e9a12c10 /ext/mysqlnd/mysqlnd_statistics.c | |
| parent | a98a67940a0808196078f2493553329e9de81592 (diff) | |
| download | php-git-b1ac37716302c2bbc7c88b7dbf6b01a88d01f661.tar.gz | |
export some calls to init/deinit code outside of the module
Diffstat (limited to 'ext/mysqlnd/mysqlnd_statistics.c')
| -rw-r--r-- | ext/mysqlnd/mysqlnd_statistics.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/mysqlnd/mysqlnd_statistics.c b/ext/mysqlnd/mysqlnd_statistics.c index 0f83e93324..0d6d4b9d25 100644 --- a/ext/mysqlnd/mysqlnd_statistics.c +++ b/ext/mysqlnd/mysqlnd_statistics.c @@ -236,7 +236,7 @@ PHPAPI void _mysqlnd_get_client_stats(zval *return_value TSRMLS_DC ZEND_FILE_LIN /* {{{ mysqlnd_stats_init */ -void +PHPAPI void mysqlnd_stats_init(MYSQLND_STATS ** stats) { *stats = calloc(1, sizeof(MYSQLND_STATS)); @@ -250,7 +250,7 @@ mysqlnd_stats_init(MYSQLND_STATS ** stats) /* {{{ mysqlnd_stats_end */ -void +PHPAPI void mysqlnd_stats_end(MYSQLND_STATS * stats) { #ifdef ZTS |
