From 332485a61701a72ba8c8aa25eef602c4f1ef92a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?IOhannes=20m=20zm=C3=B6lnig?= Date: Thu, 30 Apr 2015 20:06:23 +0000 Subject: provide a wrapper around sys_close() that always works, even with old Pd-versions (where we fallback to close()) svn path=/trunk/externals/iem/iemmatrix/; revision=17458 --- src/iemmatrix.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/iemmatrix.h') diff --git a/src/iemmatrix.h b/src/iemmatrix.h index dc02288..72d6d57 100644 --- a/src/iemmatrix.h +++ b/src/iemmatrix.h @@ -197,6 +197,12 @@ t_matrixfloat*mtx_doTranspose(t_matrixfloat*output, int row, int col); t_matrixfloat*mtx_doMultiply(int rowA, t_matrixfloat*A, int colArowB, t_matrixfloat*B, int colB); +/** wrapper functions in iemmatrix_utility.c + * + * iemmatrix_fdclose == sys_close + */ +int iemmatrix_fdclose(int fd); + /* for debugging purposes */ #define MARK startpost("MARK[%s:%d@%s]", __FILE__, __LINE__, __FUNCTION__), post -- cgit v1.2.1