make it compilable with non-C99 compilers
[util-vserver.git] / util-vserver / src / wrappers.h
index e686236..9165b1a 100644 (file)
 static UNUSED void 
 FatalErrnoError(bool condition, char const msg[]) /*@*/
 {
+  extern int   wrapper_exit_code;
+
   if (!condition)       return;
   perror(msg);
 
-  extern int   wrapper_exit_code;
   exit(wrapper_exit_code);
 }