aboutsummaryrefslogtreecommitdiff
path: root/src/link.hpp
blob: 9f978c28d9e975f5db771b57162b920ab375f5ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * Copyright (c) 2015 Andrew Kelley
 *
 * This file is part of zig, which is MIT licensed.
 * See http://opensource.org/licenses/MIT
 */

#ifndef ZIG_LINK_HPP
#define ZIG_LINK_HPP

#include "all_types.hpp"

void codegen_link(CodeGen *g, const char *out_file);


#endif