Whitespace cleanups. no code changes.

* bjm.c: Fix tabulation (such as extra spaces before tabs),
convert punctuation where it deviates from prevalent form
elsewhere in strace code, convert sizeof and offsetof where
it deviates from from prevalent form, remove space between
function/macro/array names and (parameters) or [index],
add space between "if" and (condition), correct non-standard
or wrong indentaion.
* defs.h: Likewise
* desc.c: Likewise
* file.c: Likewise
* ipc.c: Likewise
* linux/arm/syscallent.h: Likewise
* linux/avr32/syscallent.h: Likewise
* linux/hppa/syscallent.h: Likewise
* linux/i386/syscallent.h: Likewise
* linux/ioctlsort.c: Likewise
* linux/m68k/syscallent.h: Likewise
* linux/microblaze/syscallent.h: Likewise
* linux/powerpc/syscallent.h: Likewise
* linux/s390/syscallent.h: Likewise
* linux/s390x/syscallent.h: Likewise
* linux/sh/syscallent.h: Likewise
* linux/sh64/syscallent.h: Likewise
* linux/tile/syscallent.h: Likewise
* linux/x86_64/syscallent.h: Likewise
* mem.c: Likewise
* net.c: Likewise
* pathtrace.c: Likewise
* process.c: Likewise
* signal.c: Likewise
* sock.c: Likewise
* strace.c: Likewise
* stream.c: Likewise
* sunos4/syscall.h: Likewise
* sunos4/syscallent.h: Likewise
* svr4/syscall.h: Likewise
* svr4/syscallent.h: Likewise
* syscall.c: Likewise
* system.c: Likewise
* test/childthread.c: Likewise
* test/leaderkill.c: Likewise
* test/skodic.c: Likewise
* time.c: Likewise
* util.c: Likewise

Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
diff --git a/pathtrace.c b/pathtrace.c
index bcab4bb..397f235 100644
--- a/pathtrace.c
+++ b/pathtrace.c
@@ -40,7 +40,7 @@
 
 #include "syscall.h"
 
-#define NumElem(a)  ((int)((sizeof (a))/((sizeof (a)[0]))))
+#define NumElem(a)  (int)(sizeof(a) / sizeof((a)[0]))
 
 #define MAXSELECTED  256	/* max number of "selected" paths */
 static const char *selected[MAXSELECTED];	/* paths selected for tracing */
@@ -202,7 +202,7 @@
 	    s->sys_func == sys_dup3 ||
 	    s->sys_func == sys_sendfile ||
 	    s->sys_func == sys_sendfile64 ||
-            !strcmp(s->sys_name, "tee"))
+	    !strcmp(s->sys_name, "tee"))
 	{
 		/* fd, fd */
 		return fdmatch(tcp, tcp->u_arg[0]) ||
@@ -221,7 +221,7 @@
 	    s->sys_func == sys_readlinkat ||
 	    s->sys_func == sys_utimensat ||
 	    s->sys_func == sys_fchownat ||
-            s->sys_func == sys_pipe2)
+	    s->sys_func == sys_pipe2)
 	{
 		/* fd, path */
 		return fdmatch(tcp, tcp->u_arg[0]) ||
@@ -232,7 +232,7 @@
 	    s->sys_func == sys_pivotroot ||
 	    s->sys_func == sys_rename ||
 	    s->sys_func == sys_symlink ||
-            s->sys_func == sys_mount)
+	    s->sys_func == sys_mount)
 	{
 		/* path, path */
 		return upathmatch(tcp, tcp->u_arg[0]) ||
@@ -240,7 +240,7 @@
 	}
 
 	if (s->sys_func == sys_renameat ||
-            s->sys_func == sys_linkat)
+	    s->sys_func == sys_linkat)
 	{
 		/* fd, path, fd, path */
 		return fdmatch(tcp, tcp->u_arg[0]) ||
@@ -260,7 +260,7 @@
 		/* path, fd, path */
 		return fdmatch(tcp, tcp->u_arg[1]) ||
 			upathmatch(tcp, tcp->u_arg[0]) ||
-                        upathmatch(tcp, tcp->u_arg[2]);
+			upathmatch(tcp, tcp->u_arg[2]);
 	}
 
 	if (!strcmp(s->sys_name, "splice"))
@@ -278,7 +278,7 @@
 
 	if (s->sys_func == sys_select ||
 	    s->sys_func == sys_oldselect ||
-            s->sys_func == sys_pselect6)
+	    s->sys_func == sys_pselect6)
 	{
 		int     i, j, nfds;
 		long   *args, oldargs[5];
@@ -331,7 +331,7 @@
 	}
 
 	if (s->sys_func == sys_poll ||
-            s->sys_func == sys_ppoll)
+	    s->sys_func == sys_ppoll)
 	{
 		struct pollfd fds;
 		unsigned nfds;