Files
oak-editor/global/crashhandler.h
T
Troy James Sobotka 6b320e908a Typo fix
Fix the semicolon.
2019-05-13 17:13:04 -07:00

10 lines
148 B
C

#ifndef CRASHHANDLER_H
#define CRASHHANDLER_H
#ifdef __GNUC__
#include <signal.h>
void handler(int sig);
#endif
#endif // CRASHHANDLER_H