curl: update to 8.12.1

This commit is contained in:
fosslinux 2025-02-14 11:49:03 +11:00
parent c00fa39838
commit 02ed0da3d2
12 changed files with 134 additions and 187 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;
}