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/setsid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'posix/setsid.c') diff --git a/posix/setsid.c b/posix/setsid.c index d442d5775a..d3b99b2beb 100644 --- a/posix/setsid.c +++ b/posix/setsid.c @@ -23,7 +23,7 @@ The process group IDs of the session and the calling process are set to the process ID of the calling process, which is returned. */ int -__setsid () +__setsid (void) { __set_errno (ENOSYS); return -1; -- cgit v1.2.3