Changeset 847 for trunk/utils.c
- Timestamp:
- 2012-03-26T12:46:53+02:00 (14 months ago)
- File:
-
- 1 edited
-
trunk/utils.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/utils.c
r846 r847 970 970 971 971 #ifndef ZEND_ENGINE_2_3 972 size_t zend_dirname(char *path, size_t len) /* {{{ */ 973 { 972 #include "ext/standard/php_string.h" 973 size_t xc_dirname(char *path, size_t len) /* {{{ */ 974 { 975 #ifdef ZEND_ENGINE_2 976 return php_dirname(path, len); 977 #else 974 978 php_dirname(path, len); 975 979 return strlen(path); 976 } 977 /* }}} */ 978 979 long zend_atol(const char *str, int str_len) /* {{{ */ 980 #endif 981 } 982 /* }}} */ 983 984 long xc_atol(const char *str, int str_len) /* {{{ */ 980 985 { 981 986 long retval;
Note: See TracChangeset
for help on using the changeset viewer.

