authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2016-12-04 21:06:13-05:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2016-12-04 21:06:13-05:00
log9f23475b172dbe09861c5680ebec2eb96f307cb0
treeb89568465576c51cdc670c86c04c8ae23436cf92
parent2f259b8176184f063f555aed34087cf7560124fb

add missing copyright notices


7 files changed, 49 insertions(+), 0 deletions(-)

src/ast_render.cpp+7
...@@ -1,3 +1,10 @@...@@ -1,3 +1,10 @@
1/*
2 * Copyright (c) 2016 Andrew Kelley
3 *
4 * This file is part of zig, which is MIT licensed.
5 * See http://opensource.org/licenses/MIT
6 */
7
1#include "ast_render.hpp"8#include "ast_render.hpp"
29
3#include <stdio.h>10#include <stdio.h>
src/buffer.cpp+7
...@@ -1,3 +1,10 @@...@@ -1,3 +1,10 @@
1/*
2 * Copyright (c) 2016 Andrew Kelley
3 *
4 * This file is part of zig, which is MIT licensed.
5 * See http://opensource.org/licenses/MIT
6 */
7
1#include "buffer.hpp"8#include "buffer.hpp"
2#include <stdarg.h>9#include <stdarg.h>
3#include <stdlib.h>10#include <stdlib.h>
src/config.h.in+7
...@@ -1,3 +1,10 @@...@@ -1,3 +1,10 @@
1/*
2 * Copyright (c) 2016 Andrew Kelley
3 *
4 * This file is part of zig, which is MIT licensed.
5 * See http://opensource.org/licenses/MIT
6 */
7
1#ifndef ZIG_CONFIG_H8#ifndef ZIG_CONFIG_H
2#define ZIG_CONFIG_H9#define ZIG_CONFIG_H
310
src/errmsg.cpp+7
...@@ -1,3 +1,10 @@...@@ -1,3 +1,10 @@
1/*
2 * Copyright (c) 2016 Andrew Kelley
3 *
4 * This file is part of zig, which is MIT licensed.
5 * See http://opensource.org/licenses/MIT
6 */
7
1#include "errmsg.hpp"8#include "errmsg.hpp"
2#include "os.hpp"9#include "os.hpp"
310
src/error.cpp+7
...@@ -1,3 +1,10 @@...@@ -1,3 +1,10 @@
1/*
2 * Copyright (c) 2016 Andrew Kelley
3 *
4 * This file is part of zig, which is MIT licensed.
5 * See http://opensource.org/licenses/MIT
6 */
7
1#include "error.hpp"8#include "error.hpp"
29
3const char *err_str(int err) {10const char *err_str(int err) {
src/eval.cpp+7
...@@ -1,3 +1,10 @@...@@ -1,3 +1,10 @@
1/*
2 * Copyright (c) 2016 Andrew Kelley
3 *
4 * This file is part of zig, which is MIT licensed.
5 * See http://opensource.org/licenses/MIT
6 */
7
1#include "eval.hpp"8#include "eval.hpp"
2#include "analyze.hpp"9#include "analyze.hpp"
3#include "error.hpp"10#include "error.hpp"
src/ir_print.cpp+7
...@@ -1,3 +1,10 @@...@@ -1,3 +1,10 @@
1/*
2 * Copyright (c) 2016 Andrew Kelley
3 *
4 * This file is part of zig, which is MIT licensed.
5 * See http://opensource.org/licenses/MIT
6 */
7
1#include "ir.hpp"8#include "ir.hpp"
2#include "ir_print.hpp"9#include "ir_print.hpp"
310