diff options
| author | Derick Rethans <derick@php.net> | 2002-09-28 19:02:21 +0000 |
|---|---|---|
| committer | Derick Rethans <derick@php.net> | 2002-09-28 19:02:21 +0000 |
| commit | 52bd901eb480bd9d84c8d256184d7fac2dcf49ac (patch) | |
| tree | b6a3d07270cfe38ea8dcc1c1abb38df2bc3eac13 | |
| parent | 074d6c76077a09a4234c578afe73ab364b538e9c (diff) | |
| download | php-git-52bd901eb480bd9d84c8d256184d7fac2dcf49ac.tar.gz | |
- Fix for defines...
| -rw-r--r-- | Zend/zend_builtin_functions.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_builtin_functions.c b/Zend/zend_builtin_functions.c index ce793e6c89..8f7cd152b7 100644 --- a/Zend/zend_builtin_functions.c +++ b/Zend/zend_builtin_functions.c @@ -70,7 +70,7 @@ static ZEND_FUNCTION(get_defined_constants); static ZEND_FUNCTION(debug_backtrace); #if ZEND_DEBUG static ZEND_FUNCTION(zend_test_func); -#if ZEND_ZTS +#ifdef ZTS static ZEND_FUNCTION(zend_thread_id); #endif #endif @@ -127,7 +127,7 @@ static zend_function_entry builtin_functions[] = { ZEND_FE(debug_backtrace, NULL) #if ZEND_DEBUG ZEND_FE(zend_test_func, NULL) -#if ZTS +#ifdef ZTS ZEND_FE(zend_thread_id, NULL) #endif #endif |
