libzahl

big integer library
git clone git://git.suckless.org/libzahl
Log | Files | Refs | README | LICENSE

commit 7f8de37dc60b0b4b7ce1ecf94331f84b084b9eb7
parent 73b0d33bafadb839962d5d6fbd5c1a8a18a8c56c
Author: Mattias Andrée <maandree@kth.se>
Date:   Thu, 28 Apr 2016 22:12:25 +0200

Fix warnings

Signed-off-by: Mattias Andrée <maandree@kth.se>

Diffstat:
Mbench/benchmark-func.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/bench/benchmark-func.c b/bench/benchmark-func.c @@ -106,12 +106,12 @@ gettime(size_t m) PREINSTRUCTION;\ k = f->measurements;\ while (k--) {\ - INSTRUCTION;\ - INSTRUCTION;\ + (void)INSTRUCTION;\ + (void)INSTRUCTION;\ j = f->runs;\ TIC;\ while (j--) {\ - INSTRUCTION;\ + (void)INSTRUCTION;\ }\ TOC;\ measurements[k] = TICKS;\