run Lindent over source to get everything looking about the same
diff --git a/sysdeps/linux-gnu/arm/plt.c b/sysdeps/linux-gnu/arm/plt.c
index 51463c5..69e0077 100644
--- a/sysdeps/linux-gnu/arm/plt.c
+++ b/sysdeps/linux-gnu/arm/plt.c
@@ -2,13 +2,12 @@
 #include "ltrace.h"
 #include "elf.h"
 
-GElf_Addr
-arch_plt_sym_val (struct ltelf *lte, size_t ndx, GElf_Rela *rela)
+GElf_Addr arch_plt_sym_val(struct ltelf *lte, size_t ndx, GElf_Rela * rela)
 {
-  return lte->plt_addr + 20 + ndx * 12;
+	return lte->plt_addr + 20 + ndx * 12;
 }
 
-void * plt2addr(struct process *proc, void ** plt)
+void *plt2addr(struct process *proc, void **plt)
 {
-  return (void *) plt;
+	return (void *)plt;
 }
diff --git a/sysdeps/linux-gnu/arm/regs.c b/sysdeps/linux-gnu/arm/regs.c
index 70ead10..819754f 100644
--- a/sysdeps/linux-gnu/arm/regs.c
+++ b/sysdeps/linux-gnu/arm/regs.c
@@ -20,24 +20,24 @@
 #define off_lr 56
 #define off_sp 52
 
-void *
-get_instruction_pointer(struct process * proc) {
+void *get_instruction_pointer(struct process *proc)
+{
 	return (void *)ptrace(PTRACE_PEEKUSER, proc->pid, off_pc, 0);
 }
 
-void
-set_instruction_pointer(struct process * proc, void * addr) {
+void set_instruction_pointer(struct process *proc, void *addr)
+{
 	ptrace(PTRACE_POKEUSER, proc->pid, off_pc, addr);
 }
 
-void *
-get_stack_pointer(struct process * proc) {
+void *get_stack_pointer(struct process *proc)
+{
 	return (void *)ptrace(PTRACE_PEEKUSER, proc->pid, off_sp, 0);
 }
 
 /* really, this is given the *stack_pointer expecting
  * a CISC architecture; in our case, we don't need that */
-void *
-get_return_addr(struct process * proc, void * stack_pointer) {
+void *get_return_addr(struct process *proc, void *stack_pointer)
+{
 	return (void *)ptrace(PTRACE_PEEKUSER, proc->pid, off_lr, 0);
 }
diff --git a/sysdeps/linux-gnu/arm/signalent.h b/sysdeps/linux-gnu/arm/signalent.h
index 0afb004..2e67e71 100644
--- a/sysdeps/linux-gnu/arm/signalent.h
+++ b/sysdeps/linux-gnu/arm/signalent.h
@@ -1,33 +1,33 @@
-	"SIG_0",           /* 0 */
-	"SIGHUP",          /* 1 */
-	"SIGINT",          /* 2 */
-	"SIGQUIT",         /* 3 */
-	"SIGILL",          /* 4 */
-	"SIGTRAP",         /* 5 */
-	"SIGABRT",         /* 6 */
-	"SIGBUS",          /* 7 */
-	"SIGFPE",          /* 8 */
-	"SIGKILL",         /* 9 */
-	"SIGUSR1",         /* 10 */
-	"SIGSEGV",         /* 11 */
-	"SIGUSR2",         /* 12 */
-	"SIGPIPE",         /* 13 */
-	"SIGALRM",         /* 14 */
-	"SIGTERM",         /* 15 */
-	"SIGSTKFLT",       /* 16 */
-	"SIGCHLD",         /* 17 */
-	"SIGCONT",         /* 18 */
-	"SIGSTOP",         /* 19 */
-	"SIGTSTP",         /* 20 */
-	"SIGTTIN",         /* 21 */
-	"SIGTTOU",         /* 22 */
-	"SIGURG",          /* 23 */
-	"SIGXCPU",         /* 24 */
-	"SIGXFSZ",         /* 25 */
-	"SIGVTALRM",       /* 26 */
-	"SIGPROF",         /* 27 */
-	"SIGWINCH",        /* 28 */
-	"SIGIO",           /* 29 */
-	"SIGPWR",          /* 30 */
-	"SIGSYS",          /* 31 */
-	"SIGSWI",          /* 32 */
+"SIG_0",			/* 0 */
+    "SIGHUP",			/* 1 */
+    "SIGINT",			/* 2 */
+    "SIGQUIT",			/* 3 */
+    "SIGILL",			/* 4 */
+    "SIGTRAP",			/* 5 */
+    "SIGABRT",			/* 6 */
+    "SIGBUS",			/* 7 */
+    "SIGFPE",			/* 8 */
+    "SIGKILL",			/* 9 */
+    "SIGUSR1",			/* 10 */
+    "SIGSEGV",			/* 11 */
+    "SIGUSR2",			/* 12 */
+    "SIGPIPE",			/* 13 */
+    "SIGALRM",			/* 14 */
+    "SIGTERM",			/* 15 */
+    "SIGSTKFLT",		/* 16 */
+    "SIGCHLD",			/* 17 */
+    "SIGCONT",			/* 18 */
+    "SIGSTOP",			/* 19 */
+    "SIGTSTP",			/* 20 */
+    "SIGTTIN",			/* 21 */
+    "SIGTTOU",			/* 22 */
+    "SIGURG",			/* 23 */
+    "SIGXCPU",			/* 24 */
+    "SIGXFSZ",			/* 25 */
+    "SIGVTALRM",		/* 26 */
+    "SIGPROF",			/* 27 */
+    "SIGWINCH",			/* 28 */
+    "SIGIO",			/* 29 */
+    "SIGPWR",			/* 30 */
+    "SIGSYS",			/* 31 */
+    "SIGSWI",			/* 32 */
diff --git a/sysdeps/linux-gnu/arm/syscallent.h b/sysdeps/linux-gnu/arm/syscallent.h
index d6019a1..84c74b4 100644
--- a/sysdeps/linux-gnu/arm/syscallent.h
+++ b/sysdeps/linux-gnu/arm/syscallent.h
@@ -1,239 +1,239 @@
-	"0",                               /* 0 */
-	"exit",                            /* 1 */
-	"fork",                            /* 2 */
-	"read",                            /* 3 */
-	"write",                           /* 4 */
-	"open",                            /* 5 */
-	"close",                           /* 6 */
-	"waitpid",                         /* 7 */
-	"creat",                           /* 8 */
-	"link",                            /* 9 */
-	"unlink",                          /* 10 */
-	"execve",                          /* 11 */
-	"chdir",                           /* 12 */
-	"time",                            /* 13 */
-	"mknod",                           /* 14 */
-	"chmod",                           /* 15 */
-	"lchown",                          /* 16 */
-	"break",                           /* 17 */
-	"18",                              /* 18 */
-	"lseek",                           /* 19 */
-	"getpid",                          /* 20 */
-	"mount",                           /* 21 */
-	"umount",                          /* 22 */
-	"setuid",                          /* 23 */
-	"getuid",                          /* 24 */
-	"stime",                           /* 25 */
-	"ptrace",                          /* 26 */
-	"alarm",                           /* 27 */
-	"28",                              /* 28 */
-	"pause",                           /* 29 */
-	"utime",                           /* 30 */
-	"stty",                            /* 31 */
-	"gtty",                            /* 32 */
-	"access",                          /* 33 */
-	"nice",                            /* 34 */
-	"ftime",                           /* 35 */
-	"sync",                            /* 36 */
-	"kill",                            /* 37 */
-	"rename",                          /* 38 */
-	"mkdir",                           /* 39 */
-	"rmdir",                           /* 40 */
-	"dup",                             /* 41 */
-	"pipe",                            /* 42 */
-	"times",                           /* 43 */
-	"prof",                            /* 44 */
-	"brk",                             /* 45 */
-	"setgid",                          /* 46 */
-	"getgid",                          /* 47 */
-	"signal",                          /* 48 */
-	"geteuid",                         /* 49 */
-	"getegid",                         /* 50 */
-	"acct",                            /* 51 */
-	"umount2",                         /* 52 */
-	"lock",                            /* 53 */
-	"ioctl",                           /* 54 */
-	"fcntl",                           /* 55 */
-	"mpx",                             /* 56 */
-	"setpgid",                         /* 57 */
-	"ulimit",                          /* 58 */
-	"59",                              /* 59 */
-	"umask",                           /* 60 */
-	"chroot",                          /* 61 */
-	"ustat",                           /* 62 */
-	"dup2",                            /* 63 */
-	"getppid",                         /* 64 */
-	"getpgrp",                         /* 65 */
-	"setsid",                          /* 66 */
-	"sigaction",                       /* 67 */
-	"sgetmask",                        /* 68 */
-	"ssetmask",                        /* 69 */
-	"setreuid",                        /* 70 */
-	"setregid",                        /* 71 */
-	"sigsuspend",                      /* 72 */
-	"sigpending",                      /* 73 */
-	"sethostname",                     /* 74 */
-	"setrlimit",                       /* 75 */
-	"getrlimit",                       /* 76 */
-	"getrusage",                       /* 77 */
-	"gettimeofday",                    /* 78 */
-	"settimeofday",                    /* 79 */
-	"getgroups",                       /* 80 */
-	"setgroups",                       /* 81 */
-	"select",                          /* 82 */
-	"symlink",                         /* 83 */
-	"84",                              /* 84 */
-	"readlink",                        /* 85 */
-	"uselib",                          /* 86 */
-	"swapon",                          /* 87 */
-	"reboot",                          /* 88 */
-	"readdir",                         /* 89 */
-	"mmap",                            /* 90 */
-	"munmap",                          /* 91 */
-	"truncate",                        /* 92 */
-	"ftruncate",                       /* 93 */
-	"fchmod",                          /* 94 */
-	"fchown",                          /* 95 */
-	"getpriority",                     /* 96 */
-	"setpriority",                     /* 97 */
-	"profil",                          /* 98 */
-	"statfs",                          /* 99 */
-	"fstatfs",                         /* 100 */
-	"ioperm",                          /* 101 */
-	"socketcall",                      /* 102 */
-	"syslog",                          /* 103 */
-	"setitimer",                       /* 104 */
-	"getitimer",                       /* 105 */
-	"stat",                            /* 106 */
-	"lstat",                           /* 107 */
-	"fstat",                           /* 108 */
-	"109",                             /* 109 */
-	"110",                             /* 110 */
-	"vhangup",                         /* 111 */
-	"idle",                            /* 112 */
-	"syscall",                         /* 113 */
-	"wait4",                           /* 114 */
-	"swapoff",                         /* 115 */
-	"sysinfo",                         /* 116 */
-	"ipc",                             /* 117 */
-	"fsync",                           /* 118 */
-	"sigreturn",                       /* 119 */
-	"clone",                           /* 120 */
-	"setdomainname",                   /* 121 */
-	"uname",                           /* 122 */
-	"modify_ldt",                      /* 123 */
-	"adjtimex",                        /* 124 */
-	"mprotect",                        /* 125 */
-	"sigprocmask",                     /* 126 */
-	"create_module",                   /* 127 */
-	"init_module",                     /* 128 */
-	"delete_module",                   /* 129 */
-	"get_kernel_syms",                 /* 130 */
-	"quotactl",                        /* 131 */
-	"getpgid",                         /* 132 */
-	"fchdir",                          /* 133 */
-	"bdflush",                         /* 134 */
-	"sysfs",                           /* 135 */
-	"personality",                     /* 136 */
-	"afs_syscall",                     /* 137 */
-	"setfsuid",                        /* 138 */
-	"setfsgid",                        /* 139 */
-	"_llseek",                         /* 140 */
-	"getdents",                        /* 141 */
-	"_newselect",                      /* 142 */
-	"flock",                           /* 143 */
-	"msync",                           /* 144 */
-	"readv",                           /* 145 */
-	"writev",                          /* 146 */
-	"getsid",                          /* 147 */
-	"fdatasync",                       /* 148 */
-	"_sysctl",                         /* 149 */
-	"mlock",                           /* 150 */
-	"munlock",                         /* 151 */
-	"mlockall",                        /* 152 */
-	"munlockall",                      /* 153 */
-	"sched_setparam",                  /* 154 */
-	"sched_getparam",                  /* 155 */
-	"sched_setscheduler",              /* 156 */
-	"sched_getscheduler",              /* 157 */
-	"sched_yield",                     /* 158 */
-	"sched_get_priority_max",          /* 159 */
-	"sched_get_priority_min",          /* 160 */
-	"sched_rr_get_interval",           /* 161 */
-	"nanosleep",                       /* 162 */
-	"mremap",                          /* 163 */
-	"setresuid",                       /* 164 */
-	"getresuid",                       /* 165 */
-	"vm86",                            /* 166 */
-	"query_module",                    /* 167 */
-	"poll",                            /* 168 */
-	"nfsservctl",                      /* 169 */
-	"setresgid",                       /* 170 */
-	"getresgid",                       /* 171 */
-	"prctl",                           /* 172 */
-	"rt_sigreturn",                    /* 173 */
-	"rt_sigaction",                    /* 174 */
-	"rt_sigprocmask",                  /* 175 */
-	"rt_sigpending",                   /* 176 */
-	"rt_sigtimedwait",                 /* 177 */
-	"rt_sigqueueinfo",                 /* 178 */
-	"rt_sigsuspend",                   /* 179 */
-	"pread",                           /* 180 */
-	"pwrite",                          /* 181 */
-	"chown",                           /* 182 */
-	"getcwd",                          /* 183 */
-	"capget",                          /* 184 */
-	"capset",                          /* 185 */
-	"sigaltstack",                     /* 186 */
-	"sendfile",                        /* 187 */
-	"188",                             /* 188 */
-	"189",                             /* 189 */
-	"vfork",                           /* 190 */
-	"ugetrlimit",                      /* 191 */
-	"mmap2",                           /* 192 */
-	"truncate64",                      /* 193 */
-	"ftruncate64",                     /* 194 */
-	"stat64",                          /* 195 */
-	"lstat64",                         /* 196 */
-	"fstat64",                         /* 197 */
-	"lchown32",                        /* 198 */
-	"getuid32",                        /* 199 */
-	"getgid32",                        /* 200 */
-	"geteuid32",                       /* 201 */
-	"getegid32",                       /* 202 */
-	"setreuid32",                      /* 203 */
-	"setregid32",                      /* 204 */
-	"getgroups32",                     /* 205 */
-	"setgroups32",                     /* 206 */
-	"fchown32",                        /* 207 */
-	"setresuid32",                     /* 208 */
-	"getresuid32",                     /* 209 */
-	"setresgid32",                     /* 210 */
-	"getresgid32",                     /* 211 */
-	"chown32",                         /* 212 */
-	"setuid32",                        /* 213 */
-	"setgid32",                        /* 214 */
-	"setfsuid32",                      /* 215 */
-	"setfsgid32",                      /* 216 */
-	"getdents64",                      /* 217 */
-	"pivot_root",                      /* 218 */
-	"mincore",                         /* 219 */
-	"madvise",                         /* 220 */
-	"fcntl64",                         /* 221 */
-	"222",                             /* 222 */
-	"security",                        /* 223 */
-	"gettid",                          /* 224 */
-	"readahead",                       /* 225 */
-	"setxattr",                        /* 226 */
-	"lsetxattr",                       /* 227 */
-	"fsetxattr",                       /* 228 */
-	"getxattr",                        /* 229 */
-	"lgetxattr",                       /* 230 */
-	"fgetxattr",                       /* 231 */
-	"listxattr",                       /* 232 */
-	"llistxattr",                      /* 233 */
-	"flistxattr",                      /* 234 */
-	"removexattr",                     /* 235 */
-	"lremovexattr",                    /* 236 */
-	"fremovexattr",                    /* 237 */
-	"tkill",                           /* 238 */
+"0",				/* 0 */
+    "exit",			/* 1 */
+    "fork",			/* 2 */
+    "read",			/* 3 */
+    "write",			/* 4 */
+    "open",			/* 5 */
+    "close",			/* 6 */
+    "waitpid",			/* 7 */
+    "creat",			/* 8 */
+    "link",			/* 9 */
+    "unlink",			/* 10 */
+    "execve",			/* 11 */
+    "chdir",			/* 12 */
+    "time",			/* 13 */
+    "mknod",			/* 14 */
+    "chmod",			/* 15 */
+    "lchown",			/* 16 */
+    "break",			/* 17 */
+    "18",			/* 18 */
+    "lseek",			/* 19 */
+    "getpid",			/* 20 */
+    "mount",			/* 21 */
+    "umount",			/* 22 */
+    "setuid",			/* 23 */
+    "getuid",			/* 24 */
+    "stime",			/* 25 */
+    "ptrace",			/* 26 */
+    "alarm",			/* 27 */
+    "28",			/* 28 */
+    "pause",			/* 29 */
+    "utime",			/* 30 */
+    "stty",			/* 31 */
+    "gtty",			/* 32 */
+    "access",			/* 33 */
+    "nice",			/* 34 */
+    "ftime",			/* 35 */
+    "sync",			/* 36 */
+    "kill",			/* 37 */
+    "rename",			/* 38 */
+    "mkdir",			/* 39 */
+    "rmdir",			/* 40 */
+    "dup",			/* 41 */
+    "pipe",			/* 42 */
+    "times",			/* 43 */
+    "prof",			/* 44 */
+    "brk",			/* 45 */
+    "setgid",			/* 46 */
+    "getgid",			/* 47 */
+    "signal",			/* 48 */
+    "geteuid",			/* 49 */
+    "getegid",			/* 50 */
+    "acct",			/* 51 */
+    "umount2",			/* 52 */
+    "lock",			/* 53 */
+    "ioctl",			/* 54 */
+    "fcntl",			/* 55 */
+    "mpx",			/* 56 */
+    "setpgid",			/* 57 */
+    "ulimit",			/* 58 */
+    "59",			/* 59 */
+    "umask",			/* 60 */
+    "chroot",			/* 61 */
+    "ustat",			/* 62 */
+    "dup2",			/* 63 */
+    "getppid",			/* 64 */
+    "getpgrp",			/* 65 */
+    "setsid",			/* 66 */
+    "sigaction",		/* 67 */
+    "sgetmask",			/* 68 */
+    "ssetmask",			/* 69 */
+    "setreuid",			/* 70 */
+    "setregid",			/* 71 */
+    "sigsuspend",		/* 72 */
+    "sigpending",		/* 73 */
+    "sethostname",		/* 74 */
+    "setrlimit",		/* 75 */
+    "getrlimit",		/* 76 */
+    "getrusage",		/* 77 */
+    "gettimeofday",		/* 78 */
+    "settimeofday",		/* 79 */
+    "getgroups",		/* 80 */
+    "setgroups",		/* 81 */
+    "select",			/* 82 */
+    "symlink",			/* 83 */
+    "84",			/* 84 */
+    "readlink",			/* 85 */
+    "uselib",			/* 86 */
+    "swapon",			/* 87 */
+    "reboot",			/* 88 */
+    "readdir",			/* 89 */
+    "mmap",			/* 90 */
+    "munmap",			/* 91 */
+    "truncate",			/* 92 */
+    "ftruncate",		/* 93 */
+    "fchmod",			/* 94 */
+    "fchown",			/* 95 */
+    "getpriority",		/* 96 */
+    "setpriority",		/* 97 */
+    "profil",			/* 98 */
+    "statfs",			/* 99 */
+    "fstatfs",			/* 100 */
+    "ioperm",			/* 101 */
+    "socketcall",		/* 102 */
+    "syslog",			/* 103 */
+    "setitimer",		/* 104 */
+    "getitimer",		/* 105 */
+    "stat",			/* 106 */
+    "lstat",			/* 107 */
+    "fstat",			/* 108 */
+    "109",			/* 109 */
+    "110",			/* 110 */
+    "vhangup",			/* 111 */
+    "idle",			/* 112 */
+    "syscall",			/* 113 */
+    "wait4",			/* 114 */
+    "swapoff",			/* 115 */
+    "sysinfo",			/* 116 */
+    "ipc",			/* 117 */
+    "fsync",			/* 118 */
+    "sigreturn",		/* 119 */
+    "clone",			/* 120 */
+    "setdomainname",		/* 121 */
+    "uname",			/* 122 */
+    "modify_ldt",		/* 123 */
+    "adjtimex",			/* 124 */
+    "mprotect",			/* 125 */
+    "sigprocmask",		/* 126 */
+    "create_module",		/* 127 */
+    "init_module",		/* 128 */
+    "delete_module",		/* 129 */
+    "get_kernel_syms",		/* 130 */
+    "quotactl",			/* 131 */
+    "getpgid",			/* 132 */
+    "fchdir",			/* 133 */
+    "bdflush",			/* 134 */
+    "sysfs",			/* 135 */
+    "personality",		/* 136 */
+    "afs_syscall",		/* 137 */
+    "setfsuid",			/* 138 */
+    "setfsgid",			/* 139 */
+    "_llseek",			/* 140 */
+    "getdents",			/* 141 */
+    "_newselect",		/* 142 */
+    "flock",			/* 143 */
+    "msync",			/* 144 */
+    "readv",			/* 145 */
+    "writev",			/* 146 */
+    "getsid",			/* 147 */
+    "fdatasync",		/* 148 */
+    "_sysctl",			/* 149 */
+    "mlock",			/* 150 */
+    "munlock",			/* 151 */
+    "mlockall",			/* 152 */
+    "munlockall",		/* 153 */
+    "sched_setparam",		/* 154 */
+    "sched_getparam",		/* 155 */
+    "sched_setscheduler",	/* 156 */
+    "sched_getscheduler",	/* 157 */
+    "sched_yield",		/* 158 */
+    "sched_get_priority_max",	/* 159 */
+    "sched_get_priority_min",	/* 160 */
+    "sched_rr_get_interval",	/* 161 */
+    "nanosleep",		/* 162 */
+    "mremap",			/* 163 */
+    "setresuid",		/* 164 */
+    "getresuid",		/* 165 */
+    "vm86",			/* 166 */
+    "query_module",		/* 167 */
+    "poll",			/* 168 */
+    "nfsservctl",		/* 169 */
+    "setresgid",		/* 170 */
+    "getresgid",		/* 171 */
+    "prctl",			/* 172 */
+    "rt_sigreturn",		/* 173 */
+    "rt_sigaction",		/* 174 */
+    "rt_sigprocmask",		/* 175 */
+    "rt_sigpending",		/* 176 */
+    "rt_sigtimedwait",		/* 177 */
+    "rt_sigqueueinfo",		/* 178 */
+    "rt_sigsuspend",		/* 179 */
+    "pread",			/* 180 */
+    "pwrite",			/* 181 */
+    "chown",			/* 182 */
+    "getcwd",			/* 183 */
+    "capget",			/* 184 */
+    "capset",			/* 185 */
+    "sigaltstack",		/* 186 */
+    "sendfile",			/* 187 */
+    "188",			/* 188 */
+    "189",			/* 189 */
+    "vfork",			/* 190 */
+    "ugetrlimit",		/* 191 */
+    "mmap2",			/* 192 */
+    "truncate64",		/* 193 */
+    "ftruncate64",		/* 194 */
+    "stat64",			/* 195 */
+    "lstat64",			/* 196 */
+    "fstat64",			/* 197 */
+    "lchown32",			/* 198 */
+    "getuid32",			/* 199 */
+    "getgid32",			/* 200 */
+    "geteuid32",		/* 201 */
+    "getegid32",		/* 202 */
+    "setreuid32",		/* 203 */
+    "setregid32",		/* 204 */
+    "getgroups32",		/* 205 */
+    "setgroups32",		/* 206 */
+    "fchown32",			/* 207 */
+    "setresuid32",		/* 208 */
+    "getresuid32",		/* 209 */
+    "setresgid32",		/* 210 */
+    "getresgid32",		/* 211 */
+    "chown32",			/* 212 */
+    "setuid32",			/* 213 */
+    "setgid32",			/* 214 */
+    "setfsuid32",		/* 215 */
+    "setfsgid32",		/* 216 */
+    "getdents64",		/* 217 */
+    "pivot_root",		/* 218 */
+    "mincore",			/* 219 */
+    "madvise",			/* 220 */
+    "fcntl64",			/* 221 */
+    "222",			/* 222 */
+    "security",			/* 223 */
+    "gettid",			/* 224 */
+    "readahead",		/* 225 */
+    "setxattr",			/* 226 */
+    "lsetxattr",		/* 227 */
+    "fsetxattr",		/* 228 */
+    "getxattr",			/* 229 */
+    "lgetxattr",		/* 230 */
+    "fgetxattr",		/* 231 */
+    "listxattr",		/* 232 */
+    "llistxattr",		/* 233 */
+    "flistxattr",		/* 234 */
+    "removexattr",		/* 235 */
+    "lremovexattr",		/* 236 */
+    "fremovexattr",		/* 237 */
+    "tkill",			/* 238 */
diff --git a/sysdeps/linux-gnu/arm/trace.c b/sysdeps/linux-gnu/arm/trace.c
index 485f0ad..ac5d5d2 100644
--- a/sysdeps/linux-gnu/arm/trace.c
+++ b/sysdeps/linux-gnu/arm/trace.c
@@ -26,47 +26,55 @@
 #define off_ip 48
 #define off_pc 60
 
-void
-get_arch_dep(struct process * proc) {
+void get_arch_dep(struct process *proc)
+{
 }
 
 /* Returns 1 if syscall, 2 if sysret, 0 otherwise.
  */
-int
-syscall_p(struct process * proc, int status, int * sysnum) {
-	if (WIFSTOPPED(status) && WSTOPSIG(status)==(SIGTRAP | proc->tracesysgood)) {
+int syscall_p(struct process *proc, int status, int *sysnum)
+{
+	if (WIFSTOPPED(status)
+	    && WSTOPSIG(status) == (SIGTRAP | proc->tracesysgood)) {
 		/* get the user's pc (plus 8) */
 		int pc = ptrace(PTRACE_PEEKUSER, proc->pid, off_pc, 0);
 		/* fetch the SWI instruction */
-		int insn = ptrace(PTRACE_PEEKTEXT, proc->pid, pc-4, 0) ;
-        
+		int insn = ptrace(PTRACE_PEEKTEXT, proc->pid, pc - 4, 0);
+
 		*sysnum = insn & 0xFFFF;
 		/* if it is a syscall, return 1 or 2 */
 		if ((insn & 0xFFFF0000) == 0xef900000) {
-			return ptrace(PTRACE_PEEKUSER, proc->pid, off_ip, 0) ? 2 : 1;
+			return ptrace(PTRACE_PEEKUSER, proc->pid, off_ip,
+				      0) ? 2 : 1;
 		}
 	}
 	return 0;
 }
-            
-long
-gimme_arg(enum tof type, struct process * proc, int arg_num) {
-	if (arg_num==-1) {		/* return value */
+
+long gimme_arg(enum tof type, struct process *proc, int arg_num)
+{
+	if (arg_num == -1) {	/* return value */
 		return ptrace(PTRACE_PEEKUSER, proc->pid, off_r0, 0);
 	}
 
 	/* deal with the ARM calling conventions */
-	if (type==LT_TOF_FUNCTION || type==LT_TOF_FUNCTIONR) {
-		if (arg_num<4) {
-			return ptrace(PTRACE_PEEKUSER, proc->pid, 4*arg_num, 0);
+	if (type == LT_TOF_FUNCTION || type == LT_TOF_FUNCTIONR) {
+		if (arg_num < 4) {
+			return ptrace(PTRACE_PEEKUSER, proc->pid, 4 * arg_num,
+				      0);
 		} else {
-			return ptrace(PTRACE_PEEKDATA, proc->pid, proc->stack_pointer+4*(arg_num-4), 0);
+			return ptrace(PTRACE_PEEKDATA, proc->pid,
+				      proc->stack_pointer + 4 * (arg_num - 4),
+				      0);
 		}
-	} else if (type==LT_TOF_SYSCALL || type==LT_TOF_SYSCALLR) {
-		if (arg_num<5) {
-			return ptrace(PTRACE_PEEKUSER, proc->pid, 4*arg_num, 0);
+	} else if (type == LT_TOF_SYSCALL || type == LT_TOF_SYSCALLR) {
+		if (arg_num < 5) {
+			return ptrace(PTRACE_PEEKUSER, proc->pid, 4 * arg_num,
+				      0);
 		} else {
-			return ptrace(PTRACE_PEEKDATA, proc->pid, proc->stack_pointer+4*(arg_num-5), 0);
+			return ptrace(PTRACE_PEEKDATA, proc->pid,
+				      proc->stack_pointer + 4 * (arg_num - 5),
+				      0);
 		}
 	} else {
 		fprintf(stderr, "gimme_arg called with wrong arguments\n");
@@ -76,6 +84,6 @@
 	return 0;
 }
 
-void
-save_register_args(enum tof type, struct process * proc) {
+void save_register_args(enum tof type, struct process *proc)
+{
 }