2014-06-29 00:43:30 +00:00
|
|
|
/*
|
|
|
|
Copyright (c) 2014 Microsoft Corporation. All rights reserved.
|
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
|
|
|
|
Author: Leonardo de Moura
|
|
|
|
*/
|
|
|
|
#include <fstream>
|
|
|
|
#include "kernel/environment.h"
|
|
|
|
|
|
|
|
namespace lean {
|
|
|
|
/** \brief Display in \c out all files the .lean file \c fname depends on */
|
2014-08-29 20:20:25 +00:00
|
|
|
bool display_deps(environment const & env, std::ostream & out, std::ostream & err, char const * fname);
|
2014-06-29 00:43:30 +00:00
|
|
|
}
|