From 842cfee0f3eacbef5fa5f0dbd392a500ebad93ae Mon Sep 17 00:00:00 2001 From: gingerBill Date: Tue, 28 Oct 2025 14:38:25 +0000 Subject: Change Odin's LICENSE to zlib from BSD 3-clause This change was made in order to allow things produced with Odin and using Odin's core library, to not require the LICENSE to also be distributed alongside the binary form. --- core/math/big/api.odin | 2 +- core/math/big/common.odin | 2 +- core/math/big/helpers.odin | 2 +- core/math/big/internal.odin | 2 +- core/math/big/logical.odin | 2 +- core/math/big/prime.odin | 2 +- core/math/big/private.odin | 2 +- core/math/big/public.odin | 2 +- core/math/big/radix.odin | 2 +- core/math/big/tune.odin | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) (limited to 'core/math/big') diff --git a/core/math/big/api.odin b/core/math/big/api.odin index 668afa534..e18a40b30 100644 --- a/core/math/big/api.odin +++ b/core/math/big/api.odin @@ -2,7 +2,7 @@ package math_big /* Copyright 2021 Jeroen van Rijn . - Made available under Odin's BSD-3 license. + Made available under Odin's license. This file collects public proc maps and their aliases. */ diff --git a/core/math/big/common.odin b/core/math/big/common.odin index 66a29e715..a1eb4a7fd 100644 --- a/core/math/big/common.odin +++ b/core/math/big/common.odin @@ -2,7 +2,7 @@ package math_big /* Copyright 2021 Jeroen van Rijn . - Made available under Odin's BSD-3 license. + Made available under Odin's license. */ import "base:intrinsics" diff --git a/core/math/big/helpers.odin b/core/math/big/helpers.odin index e8dc792c6..b922881b4 100644 --- a/core/math/big/helpers.odin +++ b/core/math/big/helpers.odin @@ -2,7 +2,7 @@ package math_big /* Copyright 2021 Jeroen van Rijn . - Made available under Odin's BSD-3 license. + Made available under Odin's license. */ import "base:intrinsics" diff --git a/core/math/big/internal.odin b/core/math/big/internal.odin index 4b76f3b2e..e22ea0ec7 100644 --- a/core/math/big/internal.odin +++ b/core/math/big/internal.odin @@ -2,7 +2,7 @@ package math_big /* Copyright 2021 Jeroen van Rijn . - Made available under Odin's BSD-3 license. + Made available under Odin's license. ========================== Low-level routines ========================== diff --git a/core/math/big/logical.odin b/core/math/big/logical.odin index df7744a9a..a600ef823 100644 --- a/core/math/big/logical.odin +++ b/core/math/big/logical.odin @@ -2,7 +2,7 @@ package math_big /* Copyright 2021 Jeroen van Rijn . - Made available under Odin's BSD-3 license. + Made available under Odin's license. An arbitrary precision mathematics implementation in Odin. For the theoretical underpinnings, see Knuth's The Art of Computer Programming, Volume 2, section 4.3. diff --git a/core/math/big/prime.odin b/core/math/big/prime.odin index 8efa97174..d7f902fa5 100644 --- a/core/math/big/prime.odin +++ b/core/math/big/prime.odin @@ -2,7 +2,7 @@ package math_big /* Copyright 2021 Jeroen van Rijn . - Made available under Odin's BSD-3 license. + Made available under Odin's license. An arbitrary precision mathematics implementation in Odin. For the theoretical underpinnings, see Knuth's The Art of Computer Programming, Volume 2, section 4.3. diff --git a/core/math/big/private.odin b/core/math/big/private.odin index 692b1d088..fb517f0b7 100644 --- a/core/math/big/private.odin +++ b/core/math/big/private.odin @@ -2,7 +2,7 @@ package math_big /* Copyright 2021 Jeroen van Rijn . - Made available under Odin's BSD-3 license. + Made available under Odin's license. An arbitrary precision mathematics implementation in Odin. For the theoretical underpinnings, see Knuth's The Art of Computer Programming, Volume 2, section 4.3. diff --git a/core/math/big/public.odin b/core/math/big/public.odin index dfefbc91a..723e2e04a 100644 --- a/core/math/big/public.odin +++ b/core/math/big/public.odin @@ -3,7 +3,7 @@ package math_big /* Copyright 2021 Jeroen van Rijn . - Made available under Odin's BSD-3 license. + Made available under Odin's license. An arbitrary precision mathematics implementation in Odin. For the theoretical underpinnings, see Knuth's The Art of Computer Programming, Volume 2, section 4.3. diff --git a/core/math/big/radix.odin b/core/math/big/radix.odin index bc9ae068d..2bbe593a2 100644 --- a/core/math/big/radix.odin +++ b/core/math/big/radix.odin @@ -2,7 +2,7 @@ package math_big /* Copyright 2021 Jeroen van Rijn . - Made available under Odin's BSD-3 license. + Made available under Odin's license. An arbitrary precision mathematics implementation in Odin. For the theoretical underpinnings, see Knuth's The Art of Computer Programming, Volume 2, section 4.3. diff --git a/core/math/big/tune.odin b/core/math/big/tune.odin index 1d24a1325..b2dc9829c 100644 --- a/core/math/big/tune.odin +++ b/core/math/big/tune.odin @@ -3,7 +3,7 @@ package math_big /* Copyright 2021 Jeroen van Rijn . - Made available under Odin's BSD-3 license. + Made available under Odin's license. A BigInt implementation in Odin. For the theoretical underpinnings, see Knuth's The Art of Computer Programming, Volume 2, section 4.3. -- cgit v1.2.3