diff options
author | torset | 2009-02-25 12:18:20 +0000 |
---|---|---|
committer | torset | 2009-02-25 12:18:20 +0000 |
commit | 7bd2dd61fe5ed9d0bf8211a9921824cba76b4b7a (patch) | |
tree | c65226f94c315faa3acc4595b7a3a3af543da4dc /src/elementaryFunctions/int/zinta.c | |
parent | 781a2163e762443611960ccb14dbb49a48913fe6 (diff) | |
download | scilab2c-7bd2dd61fe5ed9d0bf8211a9921824cba76b4b7a.tar.gz scilab2c-7bd2dd61fe5ed9d0bf8211a9921824cba76b4b7a.tar.bz2 scilab2c-7bd2dd61fe5ed9d0bf8211a9921824cba76b4b7a.zip |
Add int files
Diffstat (limited to 'src/elementaryFunctions/int/zinta.c')
-rw-r--r-- | src/elementaryFunctions/int/zinta.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/elementaryFunctions/int/zinta.c b/src/elementaryFunctions/int/zinta.c new file mode 100644 index 00000000..1d6392be --- /dev/null +++ b/src/elementaryFunctions/int/zinta.c @@ -0,0 +1,18 @@ +/* + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2008-2008 - INRIA - Arnaud Torset + * + * This file must be used under the terms of the CeCILL. + * This source file is licensed as described in the file COPYING, which + * you should have received as part of this distribution. The terms + * are also available at + * http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt + * + */ + +#include "fix.h" +#include "int.h" + +void zinta(doubleComplex* x, int size, doubleComplex* out) { + zfixa(x,size,out); +} |