diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2008-01-03 12:28:27 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2008-01-03 12:28:27 +0000 |
commit | c3a067dc355fc57a5759d4e9a97bcbcd878caf13 (patch) | |
tree | 2035f23ed32392b7d7b92baf9fac1d4dc23e4cac /src/iemmatrix.h | |
parent | 205992dca4afb92591c09353373244ce14204b52 (diff) |
pedantic and C99
svn path=/trunk/externals/iem/iemmatrix/; revision=9114
Diffstat (limited to 'src/iemmatrix.h')
-rw-r--r-- | src/iemmatrix.h | 10 |
1 files changed, 5 insertions, 5 deletions
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 <AvailabilityMacros.h> # 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; |