diff options
author | Gisle Aas <gisle@activestate.com> | 2006-01-18 10:12:14 +0000 |
---|---|---|
committer | Gisle Aas <gisle@activestate.com> | 2006-01-18 10:12:14 +0000 |
commit | c685562bbea16b50d5c72976dbb3224d4d88fbea (patch) | |
tree | 92e02095286a587d6727cbe22b886a30ccdf953b /doio.c | |
parent | d20ea72b0d7be0a5efab755cf190bf1d51ef2d59 (diff) | |
download | perl-c685562bbea16b50d5c72976dbb3224d4d88fbea.tar.gz |
Suppress "statement not reached" warning from the Sun C compiler.
p4raw-id: //depot/perl@26893
Diffstat (limited to 'doio.c')
-rw-r--r-- | doio.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1957,9 +1957,10 @@ Perl_ingroup(pTHX_ Gid_t testgid, bool effective) Safefree(gary); return rc; } -#endif +#else return FALSE; #endif +#endif } #if defined(HAS_MSG) || defined(HAS_SEM) || defined(HAS_SHM) |