aboutsummaryrefslogtreecommitdiff
path: root/lib/std/priority_dequeue.zig
diff options
context:
space:
mode:
authorZander Khan <git@zander.xyz>2021-01-16 17:48:14 +0000
committerZander Khan <git@zander.xyz>2021-01-16 17:48:14 +0000
commit349ccc0bd07df49c9fa5934036e848d7885ebacb (patch)
tree4cc695c23680c04d3cbd9df31a922a866aa96dd2 /lib/std/priority_dequeue.zig
parenta727a508cd18d4af1773841e00630f5b47e2b95f (diff)
downloadzig-349ccc0bd07df49c9fa5934036e848d7885ebacb.tar.gz
zig-349ccc0bd07df49c9fa5934036e848d7885ebacb.zip
Add license to top of file
Diffstat (limited to 'lib/std/priority_dequeue.zig')
-rw-r--r--lib/std/priority_dequeue.zig8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/std/priority_dequeue.zig b/lib/std/priority_dequeue.zig
index a742b27050..9df8c07f7e 100644
--- a/lib/std/priority_dequeue.zig
+++ b/lib/std/priority_dequeue.zig
@@ -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;