diff options
author | Zeev Suraski <zeev@php.net> | 1999-04-24 00:12:00 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 1999-04-24 00:12:00 +0000 |
commit | 0818d96c97ceec4dbb8251c5220a2fdcdf39f355 (patch) | |
tree | c56f529e445e4bee928e7c28e0ccbb7f67572f16 /ext/standard/microtime.c | |
parent | 05d24c60223439b94d4100538331fb6749022ca3 (diff) | |
download | php-git-0818d96c97ceec4dbb8251c5220a2fdcdf39f355.tar.gz |
A lot of cleanups... Removed old thread-safe code and other redundant code and files
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); |