27 lines
625 B
C
Executable File
27 lines
625 B
C
Executable File
/*
|
|
* =====================================================================================
|
|
*
|
|
* Filename: dump_stack.h
|
|
*
|
|
* Description: the head file of dump_stack.c.
|
|
*
|
|
* Version: Melis3.0
|
|
* Create: 2018-02-07 19:31
|
|
* Revision: none
|
|
* Compiler: gcc version 6.3.0 (crosstool-NG crosstool-ng-1.23.0)
|
|
*
|
|
* Author: zhijinzeng@allwinnertech.com
|
|
* Organization: BU1-PSW
|
|
* Last Modified: 2018-02-07 19:31
|
|
*
|
|
* =====================================================================================
|
|
*/
|
|
|
|
|
|
#ifndef _DUMP_STACK_H_
|
|
#define _DUMP_STACK_H_
|
|
|
|
void dump_stack(void);
|
|
|
|
#endif
|