mirror of
https://github.com/claunia/flac.git
synced 2025-12-16 18:54:26 +00:00
convert C prototypes for functions with no args from () to (void)
This commit is contained in:
@@ -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',
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user