authorgravatar for 124872+jedisct1@users.noreply.github.comFrank Denis <124872+jedisct1@users.noreply.github.com> 2020-10-26 08:56:29+01:00
committergravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2020-10-26 17:41:29+01:00
log74a1175d9db56e0c6c3603699027434c489f4518
tree2def3d6b1e345669a3e4aa391966a10d0cc93902
parente3fed3c8141805702146601bc889341638a9c64e

std/*: add missing MIT license headers


10 files changed, 60 insertions(+), 0 deletions(-)

lib/std/crypto/aegis.zig+6
...@@ -1,3 +1,9 @@...@@ -1,3 +1,9 @@
1// SPDX-License-Identifier: MIT
2// Copyright (c) 2015-2020 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.
6
1const std = @import("std");7const std = @import("std");
2const mem = std.mem;8const mem = std.mem;
3const assert = std.debug.assert;9const assert = std.debug.assert;
lib/std/crypto/aes_gcm.zig+6
...@@ -1,3 +1,9 @@...@@ -1,3 +1,9 @@
1// SPDX-License-Identifier: MIT
2// Copyright (c) 2015-2020 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.
6
1const std = @import("std");7const std = @import("std");
2const assert = std.debug.assert;8const assert = std.debug.assert;
3const builtin = std.builtin;9const builtin = std.builtin;
lib/std/crypto/bcrypt.zig+6
...@@ -1,3 +1,9 @@...@@ -1,3 +1,9 @@
1// SPDX-License-Identifier: MIT
2// Copyright (c) 2015-2020 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.
6
1const std = @import("std");7const std = @import("std");
2const crypto = std.crypto;8const crypto = std.crypto;
3const fmt = std.fmt;9const fmt = std.fmt;
lib/std/crypto/hkdf.zig+6
...@@ -1,3 +1,9 @@...@@ -1,3 +1,9 @@
1// SPDX-License-Identifier: MIT
2// Copyright (c) 2015-2020 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.
6
1const std = @import("../std.zig");7const std = @import("../std.zig");
2const assert = std.debug.assert;8const assert = std.debug.assert;
3const hmac = std.crypto.auth.hmac;9const hmac = std.crypto.auth.hmac;
lib/std/crypto/salsa20.zig+6
...@@ -1,3 +1,9 @@...@@ -1,3 +1,9 @@
1// SPDX-License-Identifier: MIT
2// Copyright (c) 2015-2020 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.
6
1const std = @import("std");7const std = @import("std");
2const crypto = std.crypto;8const crypto = std.crypto;
3const debug = std.debug;9const debug = std.debug;
lib/std/io/auto_indenting_stream.zig+6
...@@ -1,3 +1,9 @@...@@ -1,3 +1,9 @@
1// SPDX-License-Identifier: MIT
2// Copyright (c) 2015-2020 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.
6
1const std = @import("../std.zig");7const std = @import("../std.zig");
2const io = std.io;8const io = std.io;
3const mem = std.mem;9const mem = std.mem;
lib/std/io/change_detection_stream.zig+6
...@@ -1,3 +1,9 @@...@@ -1,3 +1,9 @@
1// SPDX-License-Identifier: MIT
2// Copyright (c) 2015-2020 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.
6
1const std = @import("../std.zig");7const std = @import("../std.zig");
2const io = std.io;8const io = std.io;
3const mem = std.mem;9const mem = std.mem;
lib/std/io/find_byte_out_stream.zig+6
...@@ -1,3 +1,9 @@...@@ -1,3 +1,9 @@
1// SPDX-License-Identifier: MIT
2// Copyright (c) 2015-2020 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.
6
1const std = @import("../std.zig");7const std = @import("../std.zig");
2const io = std.io;8const io = std.io;
3const assert = std.debug.assert;9const assert = std.debug.assert;
lib/std/os/bits/linux/powerpc64.zig+6
...@@ -1,3 +1,9 @@...@@ -1,3 +1,9 @@
1// SPDX-License-Identifier: MIT
2// Copyright (c) 2015-2020 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.
6
1const std = @import("../../../std.zig");7const std = @import("../../../std.zig");
2const linux = std.os.linux;8const linux = std.os.linux;
3const socklen_t = linux.socklen_t;9const socklen_t = linux.socklen_t;
lib/std/os/linux/powerpc64.zig+6
...@@ -1,3 +1,9 @@...@@ -1,3 +1,9 @@
1// SPDX-License-Identifier: MIT
2// Copyright (c) 2015-2020 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.
6
1usingnamespace @import("../bits.zig");7usingnamespace @import("../bits.zig");
28
3pub fn syscall0(number: SYS) usize {9pub fn syscall0(number: SYS) usize {