convert C prototypes for functions with no args from () to (void)

This commit is contained in:
Josh Coalson
2007-01-31 03:53:22 +00:00
parent 44eead8534
commit e3ec2ad59e
35 changed files with 88 additions and 88 deletions

View File

@@ -155,7 +155,7 @@ FLAC__bool grabbag__file_remove_file(const char *filename)
return grabbag__file_change_stats(filename, /*read_only=*/false) && 0 == unlink(filename);
}
FILE *grabbag__file_get_binary_stdin()
FILE *grabbag__file_get_binary_stdin(void)
{
/* if something breaks here it is probably due to the presence or
* absence of an underscore before the identifiers 'setmode',
@@ -173,7 +173,7 @@ FILE *grabbag__file_get_binary_stdin()
return stdin;
}
FILE *grabbag__file_get_binary_stdout()
FILE *grabbag__file_get_binary_stdout(void)
{
/* if something breaks here it is probably due to the presence or
* absence of an underscore before the identifiers 'setmode',

View File

@@ -90,7 +90,7 @@
* XORed values of both generators.
*/
static unsigned int random_int_()
static unsigned int random_int_(void)
{
static const unsigned char parity_[256] = {
0,1,1,0,1,0,0,1,1,0,0,1,0,1,1,0,1,0,0,1,0,1,1,0,0,1,1,0,1,0,0,1,