]> git.sur5r.net Git - i3/i3/blob - include/sighandler.h
don’t use reversed identifiers for include guards (Thanks Markus)
[i3/i3] / include / sighandler.h
1 /*
2  * vim:ts=4:sw=4:expandtab
3  *
4  * i3 - an improved dynamic tiling window manager
5  * © 2009-2011 Michael Stapelberg and contributors (see also: LICENSE)
6  * © 2009-2010 Jan-Erik Rediger
7  *
8  * sighandler.c: Interactive crash dialog upon SIGSEGV/SIGABRT/SIGFPE (offers
9  *               to restart inplace).
10  *
11  */
12 #ifndef I3_SIGHANDLER_H
13 #define I3_SIGHANDLER_H
14
15 /**
16  * Setup signal handlers to safely handle SIGSEGV and SIGFPE
17  *
18  */
19 void setup_signal_handler(void);
20
21 #endif