about summary refs log tree commit diff
path: root/sysdeps
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/generic/w_lgamma.c2
-rw-r--r--sysdeps/generic/w_lgammaf.c2
-rw-r--r--sysdeps/generic/w_lgammal.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/generic/w_lgamma.c b/sysdeps/generic/w_lgamma.c
index 4815db6df7..7c7f34ff39 100644
--- a/sysdeps/generic/w_lgamma.c
+++ b/sysdeps/generic/w_lgamma.c
@@ -34,7 +34,7 @@ static char rcsid[] = "$NetBSD: w_lgamma.c,v 1.6 1995/05/10 20:49:24 jtc Exp $";
 	return __ieee754_lgamma_r(x,&signgam);
 #else
         double y;
-	int local_signgam;
+	int local_signgam = 0;
         y = __ieee754_lgamma_r(x,&local_signgam);
 	if (_LIB_VERSION != _ISOC_)
 	  /* ISO C99 does not define the global variable.  */
diff --git a/sysdeps/generic/w_lgammaf.c b/sysdeps/generic/w_lgammaf.c
index a50525a4eb..d0f6d0d17c 100644
--- a/sysdeps/generic/w_lgammaf.c
+++ b/sysdeps/generic/w_lgammaf.c
@@ -31,7 +31,7 @@ static char rcsid[] = "$NetBSD: w_lgammaf.c,v 1.3 1995/05/10 20:49:30 jtc Exp $"
 	return __ieee754_lgammaf_r(x,&signgam);
 #else
         float y;
-	int local_signgam;
+	int local_signgam = 0;
         y = __ieee754_lgammaf_r(x,&local_signgam);
 	if (_LIB_VERSION != _ISOC_)
 	  /* ISO C99 does not define the global variable.  */
diff --git a/sysdeps/generic/w_lgammal.c b/sysdeps/generic/w_lgammal.c
index 328c94e0ac..1ee51a6f49 100644
--- a/sysdeps/generic/w_lgammal.c
+++ b/sysdeps/generic/w_lgammal.c
@@ -38,7 +38,7 @@ static char rcsid[] = "$NetBSD: $";
 	return __ieee754_lgammal_r(x,&signgam);
 #else
         long double y;
-	int local_signgam;
+	int local_signgam = 0;
         y = __ieee754_lgammal_r(x,&local_signgam);
 	if (_LIB_VERSION != _ISOC_)
 	  /* ISO C99 does not define the global variable.  */