authorgravatar for git@zander.xyzZander Khan <git@zander.xyz> 2021-01-16 17:48:14+00:00
committergravatar for git@zander.xyzZander Khan <git@zander.xyz> 2021-01-16 17:48:14+00:00
log349ccc0bd07df49c9fa5934036e848d7885ebacb
tree4cc695c23680c04d3cbd9df31a922a866aa96dd2
parenta727a508cd18d4af1773841e00630f5b47e2b95f

Add license to top of file


1 files changed, 6 insertions(+), 2 deletions(-)

lib/std/priority_dequeue.zig+6-2
......@@ -1,6 +1,10 @@
1const std = @import("std");
1// SPDX-License-Identifier: MIT
2// Copyright (c) 2015-2021 Zig Contributors
3// This file is part of [zig](https://ziglang.org/), which is MIT licensed.
4// The MIT license requires this copyright notice to be included in all copies
5// and substantial portions of the software.
6const std = @import("std.zig");
27const Allocator = std.mem.Allocator;
3const sort = std.sort;
48const assert = std.debug.assert;
59const warn = std.debug.warn;
610const testing = std.testing;