From 9f23475b172dbe09861c5680ebec2eb96f307cb0 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Sun, 4 Dec 2016 21:06:13 -0500 Subject: [PATCH] add missing copyright notices --- src/ast_render.cpp | 7 +++++++ src/buffer.cpp | 7 +++++++ src/config.h.in | 7 +++++++ src/errmsg.cpp | 7 +++++++ src/error.cpp | 7 +++++++ src/eval.cpp | 7 +++++++ src/ir_print.cpp | 7 +++++++ 7 files changed, 49 insertions(+) diff --git a/src/ast_render.cpp b/src/ast_render.cpp index 9318d8edc3..ddcb842c8b 100644 --- a/src/ast_render.cpp +++ b/src/ast_render.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2016 Andrew Kelley + * + * This file is part of zig, which is MIT licensed. + * See http://opensource.org/licenses/MIT + */ + #include "ast_render.hpp" #include diff --git a/src/buffer.cpp b/src/buffer.cpp index 59972cc856..1cfe01dfd3 100644 --- a/src/buffer.cpp +++ b/src/buffer.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2016 Andrew Kelley + * + * This file is part of zig, which is MIT licensed. + * See http://opensource.org/licenses/MIT + */ + #include "buffer.hpp" #include #include diff --git a/src/config.h.in b/src/config.h.in index 24110e2a43..95d3a6f7f2 100644 --- a/src/config.h.in +++ b/src/config.h.in @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2016 Andrew Kelley + * + * This file is part of zig, which is MIT licensed. + * See http://opensource.org/licenses/MIT + */ + #ifndef ZIG_CONFIG_H #define ZIG_CONFIG_H diff --git a/src/errmsg.cpp b/src/errmsg.cpp index 23bb6a1c1b..234527d7dc 100644 --- a/src/errmsg.cpp +++ b/src/errmsg.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2016 Andrew Kelley + * + * This file is part of zig, which is MIT licensed. + * See http://opensource.org/licenses/MIT + */ + #include "errmsg.hpp" #include "os.hpp" diff --git a/src/error.cpp b/src/error.cpp index caed95f693..baa883aeb1 100644 --- a/src/error.cpp +++ b/src/error.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2016 Andrew Kelley + * + * This file is part of zig, which is MIT licensed. + * See http://opensource.org/licenses/MIT + */ + #include "error.hpp" const char *err_str(int err) { diff --git a/src/eval.cpp b/src/eval.cpp index 161598419b..0d4bf6863c 100644 --- a/src/eval.cpp +++ b/src/eval.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2016 Andrew Kelley + * + * This file is part of zig, which is MIT licensed. + * See http://opensource.org/licenses/MIT + */ + #include "eval.hpp" #include "analyze.hpp" #include "error.hpp" diff --git a/src/ir_print.cpp b/src/ir_print.cpp index b38da16108..3e8e877f39 100644 --- a/src/ir_print.cpp +++ b/src/ir_print.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2016 Andrew Kelley + * + * This file is part of zig, which is MIT licensed. + * See http://opensource.org/licenses/MIT + */ + #include "ir.hpp" #include "ir_print.hpp"