mirror of
https://github.com/gozfree/gear-lib.git
synced 2026-02-08 04:32:28 +08:00
22 lines
464 B
C
22 lines
464 B
C
/******************************************************************************
|
|
* Copyright (C) 2014-2015
|
|
* file: libdebug.h
|
|
* author: gozfree <gozfree@163.com>
|
|
* created: 2016-06-17 16:53:13
|
|
* updated: 2016-06-17 16:53:13
|
|
*****************************************************************************/
|
|
#ifndef _LIBDEBUG_H_
|
|
#define _LIBDEBUG_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int debug_register_backtrace();
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|