annotate src/proto/float.pro @ 32794:d8d28ab976a0 v9.0.1713

patch 9.0.1713: Github CI fails to load snd-dummy kernel module Commit: https://github.com/vim/vim/commit/ba913b14dde28f1f49b73a15f0a75038e12fde27 Author: Zdenek Dohnal <zdohnal@redhat.com> Date: Tue Aug 15 22:34:45 2023 +0200 patch 9.0.1713: Github CI fails to load snd-dummy kernel module Problem: Github CI fails to load snd-dummy kernel module Solution: Make installation of linux-modules-extra optional linux-modules-extra package are not available on Ubuntu 22 at the moment, which breaks CI runs. The change make its installation conditional as the original `if-else` structure tried to do. closes: #12801 Signed-off-by: Christian Brabandt <cb@256bit.org> Co-authored-by: Zdenek Dohnal <zdohnal@redhat.com>
author Christian Brabandt <cb@256bit.org>
date Tue, 15 Aug 2023 22:45:03 +0200
parents 763ea8f075db
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
25128
3766babfb546 patch 8.2.3101: missing function prototype for vim_round()
Bram Moolenaar <Bram@vim.org>
parents: 24780
diff changeset
1 /* float.c */
25557
763ea8f075db patch 8.2.3315: cannot use single quote in a float number for readability
Bram Moolenaar <Bram@vim.org>
parents: 25128
diff changeset
2 int string2float(char_u *text, float_T *value, int skip_quotes);
24780
7bc92a651472 patch 8.2.2928: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
3 void f_abs(typval_T *argvars, typval_T *rettv);
7bc92a651472 patch 8.2.2928: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
4 void f_acos(typval_T *argvars, typval_T *rettv);
7bc92a651472 patch 8.2.2928: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
5 void f_asin(typval_T *argvars, typval_T *rettv);
7bc92a651472 patch 8.2.2928: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
6 void f_atan(typval_T *argvars, typval_T *rettv);
7bc92a651472 patch 8.2.2928: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
7 void f_atan2(typval_T *argvars, typval_T *rettv);
7bc92a651472 patch 8.2.2928: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
8 void f_ceil(typval_T *argvars, typval_T *rettv);
7bc92a651472 patch 8.2.2928: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
9 void f_cos(typval_T *argvars, typval_T *rettv);
7bc92a651472 patch 8.2.2928: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
10 void f_cosh(typval_T *argvars, typval_T *rettv);
7bc92a651472 patch 8.2.2928: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
11 void f_exp(typval_T *argvars, typval_T *rettv);
7bc92a651472 patch 8.2.2928: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
12 void f_float2nr(typval_T *argvars, typval_T *rettv);
7bc92a651472 patch 8.2.2928: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
13 void f_floor(typval_T *argvars, typval_T *rettv);
7bc92a651472 patch 8.2.2928: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
14 void f_fmod(typval_T *argvars, typval_T *rettv);
7bc92a651472 patch 8.2.2928: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
15 void f_isinf(typval_T *argvars, typval_T *rettv);
7bc92a651472 patch 8.2.2928: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
16 void f_isnan(typval_T *argvars, typval_T *rettv);
7bc92a651472 patch 8.2.2928: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
17 void f_log(typval_T *argvars, typval_T *rettv);
7bc92a651472 patch 8.2.2928: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
18 void f_log10(typval_T *argvars, typval_T *rettv);
7bc92a651472 patch 8.2.2928: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
19 void f_pow(typval_T *argvars, typval_T *rettv);
25128
3766babfb546 patch 8.2.3101: missing function prototype for vim_round()
Bram Moolenaar <Bram@vim.org>
parents: 24780
diff changeset
20 float_T vim_round(float_T f);
24780
7bc92a651472 patch 8.2.2928: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
21 void f_round(typval_T *argvars, typval_T *rettv);
7bc92a651472 patch 8.2.2928: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
22 void f_sin(typval_T *argvars, typval_T *rettv);
7bc92a651472 patch 8.2.2928: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
23 void f_sinh(typval_T *argvars, typval_T *rettv);
7bc92a651472 patch 8.2.2928: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
24 void f_sqrt(typval_T *argvars, typval_T *rettv);
7bc92a651472 patch 8.2.2928: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
25 void f_str2float(typval_T *argvars, typval_T *rettv);
7bc92a651472 patch 8.2.2928: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
26 void f_tan(typval_T *argvars, typval_T *rettv);
7bc92a651472 patch 8.2.2928: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
27 void f_tanh(typval_T *argvars, typval_T *rettv);
7bc92a651472 patch 8.2.2928: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
28 void f_trunc(typval_T *argvars, typval_T *rettv);
7bc92a651472 patch 8.2.2928: the evalfunc.c file is too big
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
29 /* vim: set ft=c : */