This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
If no cuserid(), s is unused.
authorJarkko Hietaniemi <jhi@iki.fi>
Thu, 27 Nov 2014 01:52:05 +0000 (20:52 -0500)
committerJarkko Hietaniemi <jhi@iki.fi>
Thu, 27 Nov 2014 01:52:38 +0000 (20:52 -0500)
ext/POSIX/POSIX.xs

index 756e027..ed788b8 100644 (file)
@@ -3372,6 +3372,7 @@ cuserid(s = 0)
 #ifdef HAS_CUSERID
   RETVAL = cuserid(s);
 #else
+  PERL_UNUSED_VAR(s);
   RETVAL = 0;
   not_here("cuserid");
 #endif