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/iemmatrix.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/iemmatrix.h') diff --git a/src/iemmatrix.h b/src/iemmatrix.h index cf7b771..2e9eb13 100644 --- a/src/iemmatrix.h +++ b/src/iemmatrix.h @@ -73,7 +73,7 @@ # include # if defined (MAC_OS_X_VERSION_10_3) && MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_3 # else -//float intrinsics not in math.h, so we define them here +/* float intrinsics not in math.h, so we define them here */ # define sqrtf(v) (float)sqrt((double)(v)) # define cosf(v) (float)cos((double)(v)) # define sinf(v) (float)sin((double)(v)) @@ -108,16 +108,16 @@ typedef struct _mtx_binscalar { t_object x_obj; - t_matrix m; // the output matrix - t_float f; // the second input + t_matrix m; /* the output matrix */ + t_float f; /* the second input */ } t_mtx_binscalar; typedef struct _mtx_binmtx { t_object x_obj; - t_matrix m; // the output matrix - t_matrix m2; // the second input + t_matrix m; /* the output matrix */ + t_matrix m2; /* the second input */ } t_mtx_binmtx; -- cgit v1.2.1