authorgravatar for git@l4.pmLuna <git@l4.pm> 2020-08-23 16:10:02-03:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2020-08-23 22:45:18-04:00
log7015d84e0ca6f02fede45621571084df98dda712
treed74ff50cc58ad7ac41289c96ef87c0f3a397cefb
parent4e63cae369ec6e333e4aecb3d749bedff6484ee3

remove licensing comments from init-exe/init-lib


4 files changed, 0 insertions(+), 20 deletions(-)

lib/std/special/init-exe/build.zig-5
...@@ -1,8 +1,3 @@...@@ -1,8 +1,3 @@
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.
6const Builder = @import("std").build.Builder;1const Builder = @import("std").build.Builder;
72
8pub fn build(b: *Builder) void {3pub fn build(b: *Builder) void {
lib/std/special/init-exe/src/main.zig-5
...@@ -1,8 +1,3 @@...@@ -1,8 +1,3 @@
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.
6const std = @import("std");1const std = @import("std");
72
8pub fn main() anyerror!void {3pub fn main() anyerror!void {
lib/std/special/init-lib/build.zig-5
...@@ -1,8 +1,3 @@...@@ -1,8 +1,3 @@
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.
6const Builder = @import("std").build.Builder;1const Builder = @import("std").build.Builder;
72
8pub fn build(b: *Builder) void {3pub fn build(b: *Builder) void {
lib/std/special/init-lib/src/main.zig-5
...@@ -1,8 +1,3 @@...@@ -1,8 +1,3 @@
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.
6const std = @import("std");1const std = @import("std");
7const testing = std.testing;2const testing = std.testing;
83