1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-12-24 17:51:17 +03:00

Use (void) in no-arguments function definitions.

This commit is contained in:
Joseph Myers
2013-06-08 00:22:23 +00:00
parent 2e09a79ada
commit 60d2f8f3c7
81 changed files with 226 additions and 107 deletions

View File

@@ -23,7 +23,7 @@
Return -1 for errors, 0 to the new process,
and the process ID of the new process to the old process. */
int
__fork ()
__fork (void)
{
__set_errno (ENOSYS);
return -1;