mirror of
https://github.com/Ralim/IronOS.git
synced 2025-02-26 07:53:55 +00:00
Create style call in Makefile
This commit is contained in:
@@ -511,7 +511,8 @@ void _premain_init(void) {
|
||||
* by __libc_fini_array function, so we defined a new function
|
||||
* to do initialization
|
||||
*/
|
||||
void _postmain_fini(int status) { /* TODO: Add your own finishing code here, called after main */ }
|
||||
void _postmain_fini(int status) { /* TODO: Add your own finishing code here, called after main */
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief _init function called in __libc_init_array()
|
||||
@@ -522,7 +523,8 @@ void _postmain_fini(int status) { /* TODO: Add your own finishing code here, cal
|
||||
* \note
|
||||
* Please use \ref _premain_init function now
|
||||
*/
|
||||
void _init(void) { /* Don't put any code here, please use _premain_init now */ }
|
||||
void _init(void) { /* Don't put any code here, please use _premain_init now */
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief _fini function called in __libc_fini_array()
|
||||
@@ -533,6 +535,7 @@ void _init(void) { /* Don't put any code here, please use _premain_init now */ }
|
||||
* \note
|
||||
* Please use \ref _postmain_fini function now
|
||||
*/
|
||||
void _fini(void) { /* Don't put any code here, please use _postmain_fini now */ }
|
||||
void _fini(void) { /* Don't put any code here, please use _postmain_fini now */
|
||||
}
|
||||
|
||||
/** @} */ /* End of Doxygen Group NMSIS_Core_SystemAndClock */
|
||||
|
||||
Reference in New Issue
Block a user