1
0
mirror of https://github.com/php/php-src.git synced 2026-04-09 09:03:04 +02:00

Fix ordering

This commit is contained in:
Zeev Suraski
2000-09-06 04:56:22 +00:00
parent ab111470ce
commit bfa301dfd0

View File

@@ -43,12 +43,12 @@ extern ZEND_API struct _php_core_globals core_globals;
#endif
#define TRACK_VARS_POST 1
#define TRACK_VARS_GET 2
#define TRACK_VARS_COOKIE 3
#define TRACK_VARS_SERVER 4
#define TRACK_VARS_ENV 5
#define TRACK_VARS_FILES 6
#define TRACK_VARS_POST 0
#define TRACK_VARS_GET 1
#define TRACK_VARS_COOKIE 2
#define TRACK_VARS_SERVER 3
#define TRACK_VARS_ENV 4
#define TRACK_VARS_FILES 5
struct _php_tick_function_entry;