aboutsummaryrefslogtreecommitdiff
path: root/lib/std
diff options
context:
space:
mode:
authorLuna <git@l4.pm>2020-08-23 16:10:02 -0300
committerAndrew Kelley <andrew@ziglang.org>2020-08-23 22:45:18 -0400
commit7015d84e0ca6f02fede45621571084df98dda712 (patch)
treed74ff50cc58ad7ac41289c96ef87c0f3a397cefb /lib/std
parent4e63cae369ec6e333e4aecb3d749bedff6484ee3 (diff)
downloadzig-7015d84e0ca6f02fede45621571084df98dda712.tar.gz
zig-7015d84e0ca6f02fede45621571084df98dda712.zip
remove licensing comments from init-exe/init-lib
Diffstat (limited to 'lib/std')
-rw-r--r--lib/std/special/init-exe/build.zig5
-rw-r--r--lib/std/special/init-exe/src/main.zig5
-rw-r--r--lib/std/special/init-lib/build.zig5
-rw-r--r--lib/std/special/init-lib/src/main.zig5
4 files changed, 0 insertions, 20 deletions
diff --git a/lib/std/special/init-exe/build.zig b/lib/std/special/init-exe/build.zig
index db818cbe92..fd71588c5f 100644
--- a/lib/std/special/init-exe/build.zig
+++ b/lib/std/special/init-exe/build.zig
@@ -1,8 +1,3 @@
-// SPDX-License-Identifier: MIT
-// Copyright (c) 2015-2020 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 Builder = @import("std").build.Builder;
pub fn build(b: *Builder) void {
diff --git a/lib/std/special/init-exe/src/main.zig b/lib/std/special/init-exe/src/main.zig
index e4b2e7d8ec..d29869ff88 100644
--- a/lib/std/special/init-exe/src/main.zig
+++ b/lib/std/special/init-exe/src/main.zig
@@ -1,8 +1,3 @@
-// SPDX-License-Identifier: MIT
-// Copyright (c) 2015-2020 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");
pub fn main() anyerror!void {
diff --git a/lib/std/special/init-lib/build.zig b/lib/std/special/init-lib/build.zig
index edc8a0215d..558e447c15 100644
--- a/lib/std/special/init-lib/build.zig
+++ b/lib/std/special/init-lib/build.zig
@@ -1,8 +1,3 @@
-// SPDX-License-Identifier: MIT
-// Copyright (c) 2015-2020 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 Builder = @import("std").build.Builder;
pub fn build(b: *Builder) void {
diff --git a/lib/std/special/init-lib/src/main.zig b/lib/std/special/init-lib/src/main.zig
index 9a82bcc26b..747bb08573 100644
--- a/lib/std/special/init-lib/src/main.zig
+++ b/lib/std/special/init-lib/src/main.zig
@@ -1,8 +1,3 @@
-// SPDX-License-Identifier: MIT
-// Copyright (c) 2015-2020 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");
const testing = std.testing;