Run Nindent on com32/lib/exit.c
authorH. Peter Anvin <hpa@zytor.com>
Fri, 29 May 2009 22:10:23 +0000 (15:10 -0700)
committerH. Peter Anvin <hpa@zytor.com>
Fri, 29 May 2009 22:10:23 +0000 (15:10 -0700)
Automatically reformat com32/lib/exit.c using Nindent.

Do this for all files except HDT, gPXE and externally maintained
libraries (zlib, tinyjpeg, libpng).

Signed-off-by: H. Peter Anvin <hpa@zytor.com>
com32/lib/exit.c

index 68ff5f8..ccd6f1e 100644 (file)
@@ -33,9 +33,9 @@
 
 #include <stdlib.h>
 
-extern __noreturn (*__exit_handler)(int);
+extern __noreturn(*__exit_handler) (int);
 
 __noreturn exit(int rv)
 {
-  __exit_handler(rv);
+    __exit_handler(rv);
 }