add license header to all std lib files

add SPDX license identifier
copyright ownership is zig contributors
This commit is contained in:
Andrew Kelley
2020-08-19 19:40:15 -07:00
parent 83b0e52079
commit 4a69b11e74
487 changed files with 2433 additions and 3 deletions

View File

@@ -1,3 +1,8 @@
// SPDX-License-Identifier: MIT
// Copyright (c) 2015-2020 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.
const std = @import("std.zig");
const Allocator = std.mem.Allocator;
const assert = std.debug.assert;