]> git.pond.sub.org Git - empserver/blobdiff - src/client/handle.c
Indented with src/scripts/indent-emp.
[empserver] / src / client / handle.c
index e9e4ccd8f39307293e1a919b5bc03ca3b5aadbd8..ef3645f2345e43ab194f9a105c828cc88f67dcbc 100644 (file)
 
 int
 handleintr(s)
-       int     s;
+int s;
 {
-       extern  int interrupt;
+    extern int interrupt;
 
-       if (interrupt) {
-               /* tacky, but it works */
-               if (write(s, "\naborted\n", 1+7+1) <= 0)
-                       return 0;
-               interrupt = 0;
-       }
-       return 1;
+    if (interrupt) {
+       /* tacky, but it works */
+       if (write(s, "\naborted\n", 1 + 7 + 1) <= 0)
+           return 0;
+       interrupt = 0;
+    }
+    return 1;
 }