From c3a067dc355fc57a5759d4e9a97bcbcd878caf13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Thu, 3 Jan 2008 12:28:27 +0000 Subject: pedantic and C99 svn path=/trunk/externals/iem/iemmatrix/; revision=9114 --- src/mtx_gauss.c | 31 +++++++++++++++---------------- 1 file changed, 15 insertions(+), 16 deletions(-) (limited to 'src/mtx_gauss.c') diff --git a/src/mtx_gauss.c b/src/mtx_gauss.c index 8d64cf6..139ea0f 100644 --- a/src/mtx_gauss.c +++ b/src/mtx_gauss.c @@ -45,7 +45,7 @@ static void mtx_gauss_matrix(t_matrix *x, t_symbol *s, int argc, t_atom *argv) const t_matrixfloat singrange = 1.0e-10; t_matrixfloat *original; - t_matrixfloat *a1, *a2; // dummy pointers + t_matrixfloat *a1, *a2; /* dummy pointers */ if(row*col+2>argc){ @@ -57,11 +57,11 @@ static void mtx_gauss_matrix(t_matrix *x, t_symbol *s, int argc, t_atom *argv) return; } - // reserve memory for outputting afterwards + /* reserve memory for outputting afterwards */ adjustsize(x, row, row); original=matrix2float(argv); - // Gauss elimination + /* Gauss elimination */ for(i=0; iatombuffer, original); - // 3c output the atombuf; + /* 3c output the atombuf; */ matrix_bang(x); } -- cgit v1.2.1