#ifndef gelimH
#define gelimH
#ifdef __cplusplus
extern "C" {
#endif

void gelims(float **A,float *b,float *x,int n);
void gelimd(double **A,double *b,double *x,int n);
void geliml(long double **A,long double *b,long double *x,int n);

#ifdef __cplusplus
}
#endif
#endif

