libzahl

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

commit 6749362318c3440d36602bbe252f0ad1baaab64b
parent c05074a0e65fd226a27b95aff32a3f6b1d1b8da9
Author: Mattias Andrée <maandree@kth.se>
Date:   Mon,  2 May 2016 14:01:51 +0200

Suppress false -Wclobbered warning

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

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

diff --git a/bench/benchmark-func.c b/bench/benchmark-func.c @@ -291,9 +291,9 @@ destroy_ints(z_t *array, size_t start, size_t end) int main(int argc, char *argv[]) { - struct function *fs = functions; + static struct function *fs = functions; + static z_t *as = 0, *bs = 0; jmp_buf jmp; - z_t *as = 0, *bs = 0; if (argc != 2) { fprintf(stderr, "usage: %s function\n", *argv);