diff --git a/gauss.c b/gauss.c --- a/gauss.c +++ b/gauss.c @@ -32,6 +32,7 @@ void gauss (float **A, int MAXX, int MAXY) { int i, j, k, n; + float h; i = 0; @@ -88,7 +89,9 @@ int main (int argc, char **argv) { int i, k; + int MAXX, MAXY; + float value; float **A;