21 lines
495 B
C++
21 lines
495 B
C++
//===- Environment.h ------------------------------------------------------===//
|
|
//
|
|
// The MCLinker Project
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
#ifndef MCLD_ENVIRONMENT_H_
|
|
#define MCLD_ENVIRONMENT_H_
|
|
|
|
namespace mcld {
|
|
|
|
void Initialize();
|
|
|
|
void Finalize();
|
|
|
|
} // namespace mcld
|
|
|
|
#endif // MCLD_ENVIRONMENT_H_
|