Skip to content

Commit 67b17a6

Browse files
committed
patch 8.2.3101: missing function prototype for vim_round()
Problem: Missing function prototype for vim_round(). Solution: Add the prototype.
1 parent 7a40ff0 commit 67b17a6

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/proto/float.pro

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* math.c */
1+
/* float.c */
22
int string2float(char_u *text, float_T *value);
33
void f_abs(typval_T *argvars, typval_T *rettv);
44
void f_acos(typval_T *argvars, typval_T *rettv);
@@ -17,6 +17,7 @@ void f_isnan(typval_T *argvars, typval_T *rettv);
1717
void f_log(typval_T *argvars, typval_T *rettv);
1818
void f_log10(typval_T *argvars, typval_T *rettv);
1919
void f_pow(typval_T *argvars, typval_T *rettv);
20+
float_T vim_round(float_T f);
2021
void f_round(typval_T *argvars, typval_T *rettv);
2122
void f_sin(typval_T *argvars, typval_T *rettv);
2223
void f_sinh(typval_T *argvars, typval_T *rettv);

0 commit comments

Comments
 (0)