summaryrefslogtreecommitdiff
path: root/ext/standard/php_array.h
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2004-11-01 12:09:46 +0000
committerMarcus Boerger <helly@php.net>2004-11-01 12:09:46 +0000
commitdb47e478c542dc4751c14e682654811b42958111 (patch)
tree9ef6e5df43a8a85dadb2173c5748b8ccff4aabe8 /ext/standard/php_array.h
parent8e3a8b1e8edb23613c5785d0ee2a3104c8a8d616 (diff)
downloadphp-git-db47e478c542dc4751c14e682654811b42958111.tar.gz
- Use new way for global variables
- Cache class lookup
Diffstat (limited to 'ext/standard/php_array.h')
-rw-r--r--ext/standard/php_array.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/ext/standard/php_array.h b/ext/standard/php_array.h
index 077862c5c3..46bd2c77dd 100644
--- a/ext/standard/php_array.h
+++ b/ext/standard/php_array.h
@@ -102,17 +102,4 @@ HashTable* php_splice(HashTable *, int, int, zval ***, int, HashTable **);
PHPAPI int php_array_merge(HashTable *dest, HashTable *src, int recursive TSRMLS_DC);
int multisort_compare(const void *a, const void *b TSRMLS_DC);
-typedef struct {
- int *multisort_flags[2];
- int (*compare_func)(zval *result, zval *op1, zval *op2 TSRMLS_DC);
-} php_array_globals;
-
-#ifdef ZTS
-#define ARRAYG(v) TSRMG(array_globals_id, php_array_globals *, v)
-extern int array_globals_id;
-#else
-#define ARRAYG(v) (array_globals.v)
-extern php_array_globals array_globals;
-#endif
-
#endif /* PHP_ARRAY_H */