From cf67e4cc9025ce921230b821cb7e75bce06876cd Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Wed, 19 Sep 2012 11:07:41 +0200 Subject: [PATCH] maint: make-prime-list: avoid -Wsuggest-attribute=const warning * src/make-prime-list.c: Include . (binvert): Add _GL_ATTRIBUTE_CONST. --- src/make-prime-list.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/make-prime-list.c b/src/make-prime-list.c index 1f5b3ce11f..724924b40c 100644 --- a/src/make-prime-list.c +++ b/src/make-prime-list.c @@ -17,6 +17,8 @@ PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/. */ +#include + #include #include #include @@ -29,7 +31,7 @@ struct prime uintmax_t lim; /* floor(UINTMAX_MAX / p) */ }; -static uintmax_t +static uintmax_t _GL_ATTRIBUTE_CONST binvert (uintmax_t a) { uintmax_t x = 0xf5397db1 >> (4*((a/2) & 0x7)); -- 2.47.2