From a17ec5cbf2caa7217a78de494ee8da031bd99692 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Mon, 17 Oct 2011 10:05:44 +0000 Subject: =?UTF-8?q?2011-10-17=09Ralf=20Cors=C3=A9pius=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * psxhdrs/proc01.c, psxhdrs/proc02.c, psxhdrs/proc03.c, psxhdrs/proc04.c, psxhdrs/proc05.c, psxhdrs/proc06.c, psxhdrs/proc07.c, psxhdrs/proc08.c, psxhdrs/proc09.c, psxhdrs/proc10.c, psxhdrs/proc11.c, psxhdrs/proc12.c, psxhdrs/proc13.c, psxhdrs/proc14.c: Let test() return values (avoid warnings). --- testsuites/psxtests/psxhdrs/proc06.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'testsuites/psxtests/psxhdrs/proc06.c') diff --git a/testsuites/psxtests/psxhdrs/proc06.c b/testsuites/psxtests/psxhdrs/proc06.c index 8b037e47a2..9872a27610 100644 --- a/testsuites/psxtests/psxhdrs/proc06.c +++ b/testsuites/psxtests/psxhdrs/proc06.c @@ -19,11 +19,13 @@ #include #include -void test( void ); +int test( void ); -void test( void ) +int test( void ) { gid_t gid; gid = getegid(); + + return gid; } -- cgit v1.2.3