| author | |
| committer | |
| log | 9f23475b172dbe09861c5680ebec2eb96f307cb0 |
| tree | b89568465576c51cdc670c86c04c8ae23436cf92 |
| parent | 2f259b8176184f063f555aed34087cf7560124fb |
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" |
| 2 | 9 | ||
| 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_H | 8 | #ifndef ZIG_CONFIG_H |
| 2 | #define ZIG_CONFIG_H | 9 | #define ZIG_CONFIG_H |
| 3 | 10 |
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" |
| 3 | 10 |
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" |
| 2 | 9 | ||
| 3 | const char *err_str(int err) { | 10 | const 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" |
| 3 | 10 |