Removed the space between function names and the opening parenthesis.
[mmh] / sbr / getanswer.c
index 4707255..9bac0e5 100644 (file)
 
 
 int
-getanswer (char *prompt)
+getanswer(char *prompt)
 {
        static int interactive = -1;
 
        if (interactive < 0)
-               interactive = isatty (fileno (stdin)) ? 1 : 0;
+               interactive = isatty(fileno(stdin)) ? 1 : 0;
 
-       return (interactive ? gans (prompt, anoyes) : 1);
+       return (interactive ? gans(prompt, anoyes) : 1);
 }