mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00:00
Add license to top of file
This commit is contained in:
parent
a727a508cd
commit
349ccc0bd0
1 changed files with 6 additions and 2 deletions
|
|
@ -1,6 +1,10 @@
|
|||
const std = @import("std");
|
||||
// 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.
|
||||
const std = @import("std.zig");
|
||||
const Allocator = std.mem.Allocator;
|
||||
const sort = std.sort;
|
||||
const assert = std.debug.assert;
|
||||
const warn = std.debug.warn;
|
||||
const testing = std.testing;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue