]> git.sur5r.net Git - i3/i3/blobdiff - include/sighandler.h
Merge branch 'next' into master
[i3/i3] / include / sighandler.h
index 4931743877e3e6eed6cb73f740a30d8835a613a8..2cc20cd214720cd3ed6e201ffa73e19cee025650 100644 (file)
@@ -1,21 +1,17 @@
 /*
- * vim:ts=8:expandtab
+ * vim:ts=4:sw=4:expandtab
  *
  * i3 - an improved dynamic tiling window manager
- *
- * © 2009-2010 Michael Stapelberg and contributors
- * © 2009-2010 Jan-Erik Rediger
- *
- * See file LICENSE for license information.
+ * © 2009 Michael Stapelberg and contributors (see also: LICENSE)
  *
  */
-#ifndef _SIGHANDLER_H
-#define _SIGHANDLER_H
+#pragma once
+
+#include <config.h>
 
 /**
- * Setup signal handlers to safely handle SIGSEGV and SIGFPE
+ * Configured a signal handler to gracefully handle crashes and allow the user
+ * to generate a backtrace and rescue their session.
  *
  */
-void setup_signal_handler();
-
-#endif
+void setup_signal_handler(void);