From fd5507723bfccd511ea2405e8dd597b7e6dff496 Mon Sep 17 00:00:00 2001 From: Claudio Gheller Date: Tue, 9 Apr 2024 15:57:18 +0200 Subject: [PATCH] integer types corrected for C compiler --- w-stacking.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/w-stacking.h b/w-stacking.h index 845e923..8e6ebde 100755 --- a/w-stacking.h +++ b/w-stacking.h @@ -37,7 +37,7 @@ void wstack( } #else void wstack( - int, + long long unsigned, unsigned int, unsigned int, unsigned int, @@ -50,8 +50,8 @@ void wstack( double, double, int, - int, - int, + long long unsigned, + long long unsigned, double*, int, int); -- GitLab