diff options
author | Sean Bright <elixer@php.net> | 2002-01-20 04:55:40 +0000 |
---|---|---|
committer | Sean Bright <elixer@php.net> | 2002-01-20 04:55:40 +0000 |
commit | cbedeea53ccc14fb19996ecbfb839b5075709dae (patch) | |
tree | 3ab5f86e9303d19965ea2fed74d036a344432375 /ext/db/php_db.h | |
parent | ac1446fe1d44958e11eb08f6c49a95a4dababa73 (diff) | |
download | php-git-cbedeea53ccc14fb19996ecbfb839b5075709dae.tar.gz |
These PHP3_* macros aren't defined in the code, so these haven't been doing
anything for some time now (at least since 4.0 was released). So let's go
ahead and remove those.
# If I missed something obvious, let me know and I will revert the patch.
Diffstat (limited to 'ext/db/php_db.h')
-rw-r--r-- | ext/db/php_db.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/db/php_db.h b/ext/db/php_db.h index 22f8d0430a..cc27363822 100644 --- a/ext/db/php_db.h +++ b/ext/db/php_db.h @@ -52,7 +52,7 @@ typedef struct dbm_info { #endif dbm_info *php_find_dbm(pval *id TSRMLS_DC); -int php_dbm_close(zend_rsrc_list_entry *rsrc TSRMLS_DC); +void php_dbm_close(zend_rsrc_list_entry *rsrc TSRMLS_DC); dbm_info *php_dbm_open(char *filename, char *mode TSRMLS_DC); int php_dbm_insert(dbm_info *info, char *key, char *value TSRMLS_DC); char *php_dbm_fetch(dbm_info *info, char *key TSRMLS_DC); |