]> git.sur5r.net Git - i3/i3/commitdiff
Static analyzers: Add noreturn attribute to die()
authorMichael Stapelberg <michael@stapelberg.de>
Thu, 11 Jun 2009 01:37:13 +0000 (03:37 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Thu, 11 Jun 2009 01:37:13 +0000 (03:37 +0200)
include/util.h

index 5658492e08f0cd38dda99f108df614b6215ad40b..437411b63ee66b9576e37df39d34802e1c673f7b 100644 (file)
@@ -54,7 +54,7 @@ void slog(char *fmt, ...);
  * Prints the message (see printf()) to stderr, then exits the program.
  *
  */
-void die(char *fmt, ...);
+void die(char *fmt, ...) __attribute__((__noreturn__));
 
 /**
  * Safe-wrapper around malloc which exits if malloc returns NULL (meaning that there