fix(compiler): missing files

This commit is contained in:
Leonardo de Moura 2015-09-11 23:24:09 -07:00
parent 3b420057fe
commit de2906ee8e
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,15 @@
/*
Copyright (c) 2015 Microsoft Corporation. All rights reserved.
Released under Apache 2.0 license as described in the file LICENSE.
Author: Leonardo de Moura
*/
#include "compiler/preprocess_rec.h"
namespace lean{
void initialize_compiler_module() {
initialize_preprocess_rec();
}
void finalize_compiler_module() {
finalize_preprocess_rec();
}
}

View file

@ -0,0 +1,11 @@
/*
Copyright (c) 2015 Microsoft Corporation. All rights reserved.
Released under Apache 2.0 license as described in the file LICENSE.
Author: Leonardo de Moura
*/
#pragma once
namespace lean {
void initialize_compiler_module();
void finalize_compiler_module();
}