The GNU coding standard requires a space between the function name and

its parenthesised argument list.
This commit is contained in:
James Youngman
2005-01-08 14:10:33 +00:00
parent baadc9b8aa
commit 6acfeff358
5 changed files with 5 additions and 5 deletions

View File

@@ -74,7 +74,7 @@ main (int argc, char **argv)
program_name = argv[0];
(void) argc;
atexit(close_stdout);
atexit (close_stdout);
pathsize = oldpathsize = 1026; /* Increased as necessary by getline. */
path = xmalloc (pathsize);

View File

@@ -146,7 +146,7 @@ main (int argc, char **argv)
int line_len; /* Length of input line. */
program_name = argv[0];
atexit(close_stdout);
atexit (close_stdout);
bigram[2] = '\0';

View File

@@ -166,7 +166,7 @@ main (int argc, char **argv)
int optc;
program_name = argv[0];
atexit(close_stdout);
atexit (close_stdout);
pathsize = oldpathsize = 1026; /* Increased as necessary by getline. */
path = xmalloc (pathsize);

View File

@@ -745,7 +745,7 @@ main (argc, argv)
#endif
bindtextdomain (PACKAGE, LOCALEDIR);
textdomain (PACKAGE);
atexit(close_stdout);
atexit (close_stdout);
dbpath = getenv ("LOCATE_PATH");
if (dbpath == NULL)

View File

@@ -359,7 +359,7 @@ main (int argc, char **argv)
#endif
bindtextdomain (PACKAGE, LOCALEDIR);
textdomain (PACKAGE);
atexit(close_stdout);
atexit (close_stdout);
/* IEE Std 1003.1, 2003 specifies that the combined argument and
* environment list shall not exceed {ARG_MAX}-2048 bytes. It also