From ea0387796a349c91032fbcb10f50c6ad8607b0f6 Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Tue, 29 Jul 2025 12:12:43 +0200 Subject: All coordinates unsigned --- test/011_math_indextoperm/indextoperm_tests.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/011_math_indextoperm/indextoperm_tests.c') diff --git a/test/011_math_indextoperm/indextoperm_tests.c b/test/011_math_indextoperm/indextoperm_tests.c index 87399ef..e83cbad 100644 --- a/test/011_math_indextoperm/indextoperm_tests.c +++ b/test/011_math_indextoperm/indextoperm_tests.c @@ -1,11 +1,11 @@ #include "../test.h" -void indextoperm(int64_t, size_t n, uint8_t [n]); +void indextoperm(uint64_t, size_t n, uint8_t [n]); void run(void) { char str[STRLENMAX]; uint8_t a[100]; - int64_t n, p, i; + uint64_t n, p, i; fgets(str, STRLENMAX, stdin); n = atoll(str); -- cgit v1.3