From f97a99e051fb129ac05c2c988d06f494b80cd157 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sun, 26 Feb 2017 18:17:08 -0600 Subject: [PATCH] C library: Remove unused static global from lib_dtoa.c --- libc/stdio/lib_dtoa.c | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/libc/stdio/lib_dtoa.c b/libc/stdio/lib_dtoa.c index 1e85bc3e0f..ab03d9b4a4 100644 --- a/libc/stdio/lib_dtoa.c +++ b/libc/stdio/lib_dtoa.c @@ -819,11 +819,6 @@ static const double bigtens[] = 1e16, 1e32, 1e64, 1e128, 1e256 }; -static const double tinytens[] = -{ - 1e-16, 1e-32, 1e-64, 1e-128, 1e-256 -}; - # define n_bigtens 5 #else static const double bigtens[] = @@ -831,11 +826,6 @@ static const double bigtens[] = 1e16, 1e32 }; -static const double tinytens[] = -{ - 1e-16, 1e-32 -}; - # define n_bigtens 2 #endif