Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
From the C99 standard: An identifier list declares only the identifiers of the parameters of the function. An empty list in a function declarator that is part of a definition of that function specifies that the function has no parameters. The empty list in a function declarator that is not part of a definition of that function specifies that no information about the number or types of the parameters is supplied. Because this is a function definition, not a simple delclaration, `void` is not required. Yet, because the function has not declared beforehand, I find it better to add `void`.
- Loading branch information