summaryrefslogtreecommitdiff
path: root/ext/pdo_sqlite/php_pdo_sqlite.h
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2019-03-12 13:44:05 +0300
committerDmitry Stogov <dmitry@zend.com>2019-03-12 13:44:05 +0300
commit5aa1176238f41097ea7295ba6911aa19ae7c1021 (patch)
treed1536f4445a18b91295cda84dd30378048eb0fd0 /ext/pdo_sqlite/php_pdo_sqlite.h
parentc48f5fe841987f9c43111565e9a259698539b9ec (diff)
downloadphp-git-5aa1176238f41097ea7295ba6911aa19ae7c1021.tar.gz
Cleanup unused module globals
Diffstat (limited to 'ext/pdo_sqlite/php_pdo_sqlite.h')
-rw-r--r--ext/pdo_sqlite/php_pdo_sqlite.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/ext/pdo_sqlite/php_pdo_sqlite.h b/ext/pdo_sqlite/php_pdo_sqlite.h
index 294a85f41c..73d8a98675 100644
--- a/ext/pdo_sqlite/php_pdo_sqlite.h
+++ b/ext/pdo_sqlite/php_pdo_sqlite.h
@@ -35,20 +35,4 @@ PHP_RINIT_FUNCTION(pdo_sqlite);
PHP_RSHUTDOWN_FUNCTION(pdo_sqlite);
PHP_MINFO_FUNCTION(pdo_sqlite);
-/*
- Declare any global variables you may need between the BEGIN
- and END macros here:
-
-ZEND_BEGIN_MODULE_GLOBALS(pdo_sqlite)
- long global_value;
- char *global_string;
-ZEND_END_MODULE_GLOBALS(pdo_sqlite)
-*/
-
-#ifdef ZTS
-#define PDO_SQLITE_G(v) TSRMG(pdo_sqlite_globals_id, zend_pdo_sqlite_globals *, v)
-#else
-#define PDO_SQLITE_G(v) (pdo_sqlite_globals.v)
-#endif
-
#endif /* PHP_PDO_SQLITE_H */