add missing copyright notices

This commit is contained in:
Andrew Kelley 2016-12-04 21:06:13 -05:00
parent 2f259b8176
commit 9f23475b17
7 changed files with 49 additions and 0 deletions

View File

@ -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 <stdio.h>

View File

@ -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 <stdarg.h>
#include <stdlib.h>

View File

@ -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

View File

@ -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"

View File

@ -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) {

View File

@ -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"

View File

@ -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"