You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
495 B
21 lines
495 B
7 months ago
|
//===- 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_
|