comparison src/proto/float.pro @ 25128:3766babfb546 v8.2.3101

patch 8.2.3101: missing function prototype for vim_round() Commit: https://github.com/vim/vim/commit/67b17a6fc62156383d24dcbd6e6df34e180d7235 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 4 16:50:55 2021 +0200 patch 8.2.3101: missing function prototype for vim_round() Problem: Missing function prototype for vim_round(). Solution: Add the prototype.
author Bram Moolenaar <Bram@vim.org>
date Sun, 04 Jul 2021 17:00:05 +0200
parents 7bc92a651472
children 763ea8f075db
comparison
equal deleted inserted replaced
25127:d515a2dd7077 25128:3766babfb546
1 /* math.c */ 1 /* float.c */
2 int string2float(char_u *text, float_T *value); 2 int string2float(char_u *text, float_T *value);
3 void f_abs(typval_T *argvars, typval_T *rettv); 3 void f_abs(typval_T *argvars, typval_T *rettv);
4 void f_acos(typval_T *argvars, typval_T *rettv); 4 void f_acos(typval_T *argvars, typval_T *rettv);
5 void f_asin(typval_T *argvars, typval_T *rettv); 5 void f_asin(typval_T *argvars, typval_T *rettv);
6 void f_atan(typval_T *argvars, typval_T *rettv); 6 void f_atan(typval_T *argvars, typval_T *rettv);
15 void f_isinf(typval_T *argvars, typval_T *rettv); 15 void f_isinf(typval_T *argvars, typval_T *rettv);
16 void f_isnan(typval_T *argvars, typval_T *rettv); 16 void f_isnan(typval_T *argvars, typval_T *rettv);
17 void f_log(typval_T *argvars, typval_T *rettv); 17 void f_log(typval_T *argvars, typval_T *rettv);
18 void f_log10(typval_T *argvars, typval_T *rettv); 18 void f_log10(typval_T *argvars, typval_T *rettv);
19 void f_pow(typval_T *argvars, typval_T *rettv); 19 void f_pow(typval_T *argvars, typval_T *rettv);
20 float_T vim_round(float_T f);
20 void f_round(typval_T *argvars, typval_T *rettv); 21 void f_round(typval_T *argvars, typval_T *rettv);
21 void f_sin(typval_T *argvars, typval_T *rettv); 22 void f_sin(typval_T *argvars, typval_T *rettv);
22 void f_sinh(typval_T *argvars, typval_T *rettv); 23 void f_sinh(typval_T *argvars, typval_T *rettv);
23 void f_sqrt(typval_T *argvars, typval_T *rettv); 24 void f_sqrt(typval_T *argvars, typval_T *rettv);
24 void f_str2float(typval_T *argvars, typval_T *rettv); 25 void f_str2float(typval_T *argvars, typval_T *rettv);