diff options
Diffstat (limited to 'ext/standard/microtime.c')
-rw-r--r-- | ext/standard/microtime.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/standard/microtime.c b/ext/standard/microtime.c index 81e0694a58..3e1094acda 100644 --- a/ext/standard/microtime.c +++ b/ext/standard/microtime.c @@ -65,7 +65,6 @@ void php3_microtime(INTERNAL_FUNCTION_PARAMETERS) long sec = 0L; double msec = 0.0; char ret[100]; - TLS_VARS; if (gettimeofday((struct timeval *) &tp, (NUL)) == 0) { msec = (double) (tp.tv_usec / MICRO_IN_SEC); |