aboutsummaryrefslogtreecommitdiff
path: root/lib/std/hash/crc.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2021-08-24 12:25:09 -0700
committerAndrew Kelley <andrew@ziglang.org>2021-08-24 12:25:09 -0700
commitd29871977f97b50fe5e3f16cd9c68ebeba02a562 (patch)
tree0deb01ff5e6e8a98da46663ba5b45e233ae52aad /lib/std/hash/crc.zig
parentdd75302563f5cc0c67907b5c8a724e69379893f0 (diff)
downloadzig-d29871977f97b50fe5e3f16cd9c68ebeba02a562.tar.gz
zig-d29871977f97b50fe5e3f16cd9c68ebeba02a562.zip
remove redundant license headers from zig standard library
We already have a LICENSE file that covers the Zig Standard Library. We no longer need to remind everyone that the license is MIT in every single file. Previously this was introduced to clarify the situation for a fork of Zig that made Zig's LICENSE file harder to find, and replaced it with their own license that required annual payments to their company. However that fork now appears to be dead. So there is no need to reinforce the copyright notice in every single file.
Diffstat (limited to 'lib/std/hash/crc.zig')
-rw-r--r--lib/std/hash/crc.zig5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/std/hash/crc.zig b/lib/std/hash/crc.zig
index 597a0a4c75..0b7a9a7c51 100644
--- a/lib/std/hash/crc.zig
+++ b/lib/std/hash/crc.zig
@@ -1,8 +1,3 @@
-// SPDX-License-Identifier: MIT
-// Copyright (c) 2015-2021 Zig Contributors
-// This file is part of [zig](https://ziglang.org/), which is MIT licensed.
-// The MIT license requires this copyright notice to be included in all copies
-// and substantial portions of the software.
// There are two implementations of CRC32 implemented with the following key characteristics:
//
// - Crc32WithPoly uses 8Kb of tables but is ~10x faster than the small method.