make it compilable with non-C99 compilers
authorEnrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
Tue, 21 Oct 2003 13:22:50 +0000 (13:22 +0000)
committerEnrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
Tue, 21 Oct 2003 13:22:50 +0000 (13:22 +0000)
git-svn-id: http://svn.linux-vserver.org/svn/util-vserver/trunk@252 94cd875c-1c1d-0410-91d2-eb244daf1a30

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);
 }