diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-02-07 21:19:28 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-02-07 21:19:28 +0100 |
commit | 79c2c881bb7ae1cbdeeff91d4875b4bf2e54df06 (patch) | |
tree | 9af61874e83f9428b0b91e54328e3f92f7ed9f95 /src/proto | |
parent | dc94a26a641914df5f1ba1ab47a5752e1137287e (diff) | |
download | vim-79c2c881bb7ae1cbdeeff91d4875b4bf2e54df06.zip |
patch 7.4.1285
Problem: Cannot measure elapsed time.
Solution: Add reltimefloat().
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/ex_cmds2.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/ex_cmds2.pro b/src/proto/ex_cmds2.pro index 54ccf12c3..a73e10f64 100644 --- a/src/proto/ex_cmds2.pro +++ b/src/proto/ex_cmds2.pro @@ -14,6 +14,7 @@ void profile_start(proftime_T *tm); void profile_end(proftime_T *tm); void profile_sub(proftime_T *tm, proftime_T *tm2); char *profile_msg(proftime_T *tm); +float_T profile_float(proftime_T *tm); void profile_setlimit(long msec, proftime_T *tm); int profile_passed_limit(proftime_T *tm); void profile_zero(proftime_T *tm); |