Update curl to 7.88.1

Patches have been regenerated to update hunk line numbers
This commit is contained in:
Eduardo Sánchez Muñoz 2023-03-19 18:58:52 +01:00
parent 558630c559
commit bc4ecd9ed4
16 changed files with 38 additions and 33 deletions

View file

@ -0,0 +1,8 @@
# SPDX-FileCopyrightText: 1998-2021 Daniel Stenberg <daniel@haxx.se>
#
# SPDX-License-Identifier: curl
my $pi = 3.1415;
foreach my $i (1 .. 200) {
printf "%d, ", sin($i/200 * 2 * $pi) * 500000 + 500000;
}