1//===- Initialization.h ---------------------------------------------------===//
2//
3//                     The MCLinker Project
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef ALONE_SUPPORT_INITIALIZATION_H
11#define ALONE_SUPPORT_INITIALIZATION_H
12
13namespace alone {
14
15namespace init {
16
17void Initialize();
18
19} // end namespace init
20
21} // end namespace alone
22
23#endif // ALONE_SUPPORT_INITIALIZATION_H
24