mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 00:10:52 +02:00
16 lines
239 B
C++
16 lines
239 B
C++
//
|
|
// Stacktrace.h
|
|
// hifi
|
|
//
|
|
// Created by Stephen Birarda on 5/6/13.
|
|
//
|
|
//
|
|
|
|
#ifndef __hifi__Stacktrace__
|
|
#define __hifi__Stacktrace__
|
|
|
|
#include <iostream>
|
|
|
|
void printStacktrace(int signal);
|
|
|
|
#endif /* defined(__hifi__Stacktrace__) */
|