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/*
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
18#include "ast_render.hpp"
29
310#include <stdio.h>
src/buffer.cpp+7
......@@ -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
18#include "buffer.hpp"
29#include <stdarg.h>
310#include <stdlib.h>
src/config.h.in+7
......@@ -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
18#ifndef ZIG_CONFIG_H
29#define ZIG_CONFIG_H
310
src/errmsg.cpp+7
......@@ -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
18#include "errmsg.hpp"
29#include "os.hpp"
310
src/error.cpp+7
......@@ -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
18#include "error.hpp"
29
310const char *err_str(int err) {
src/eval.cpp+7
......@@ -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
18#include "eval.hpp"
29#include "analyze.hpp"
310#include "error.hpp"
src/ir_print.cpp+7
......@@ -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
18#include "ir.hpp"
29#include "ir_print.hpp"
310