18 lines
311 B
C++
18 lines
311 B
C++
/*
|
|
* Copyright (c) 2018 Andrew Kelley
|
|
*
|
|
* This file is part of zig, which is MIT licensed.
|
|
* See http://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
#ifndef ZIG_COMPILER_HPP
|
|
#define ZIG_COMPILER_HPP
|
|
|
|
#include "buffer.hpp"
|
|
#include "error.hpp"
|
|
|
|
Buf *get_stage1_cache_path();
|
|
Error get_compiler_id(Buf **result);
|
|
|
|
#endif
|