You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
528 B
C++
24 lines
528 B
C++
/*! \file
|
|
* \brief Initialization functions for global objects required by the compiler
|
|
*/
|
|
|
|
#pragma once
|
|
#include "../types.h"
|
|
|
|
/*! \brief C StartUp (CSU)
|
|
* required by the compiler and provided by the c standard library
|
|
*/
|
|
namespace CSU {
|
|
|
|
/*! \brief Call global constructors and initialization functions
|
|
* (this is usually done by __libc_csu_init)
|
|
*/
|
|
void initializer();
|
|
|
|
/*! \brief Call global destructors and finalizer functions
|
|
* (this is usually done by __libc_csu_fini)
|
|
*/
|
|
void finalizer();
|
|
|
|
} // namespace CSU
|