From 60d2f8f3c7f1cdacafcbd60dc004e32cc90035ca Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Sat, 8 Jun 2013 00:22:23 +0000 Subject: Use (void) in no-arguments function definitions. --- posix/fork.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'posix/fork.c') diff --git a/posix/fork.c b/posix/fork.c index 01b5279199..4946a40b8b 100644 --- a/posix/fork.c +++ b/posix/fork.c @@ -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; -- cgit v1.2.3