#ifndef GAUSS_H #define GAUSS_H int fgauss_lu(int N, float **A, int *IPIV); int fsolve_lu(int N, float **LU, int *IPIV, float *B); #endif