mirror of
https://github.com/wichtounet/thor-os.git
synced 2025-09-12 05:58:15 -04:00
18 lines
453 B
C++
18 lines
453 B
C++
//=======================================================================
|
|
// Copyright Baptiste Wicht 2013-2016.
|
|
// Distributed under the terms of the MIT License.
|
|
// (See accompanying file LICENSE or copy at
|
|
// http://www.opensource.org/licenses/MIT)
|
|
//=======================================================================
|
|
|
|
#ifndef BOOT_32_HPP
|
|
#define BOOT_32_HPP
|
|
|
|
extern "C" {
|
|
|
|
void __attribute((noreturn)) pm_main();
|
|
|
|
} //end of exern "C"
|
|
|
|
#endif
|