diff options
author | jofret | 2008-04-18 08:42:16 +0000 |
---|---|---|
committer | jofret | 2008-04-18 08:42:16 +0000 |
commit | e15d2967125c1663ca83ec8ddb0bc23e481fef52 (patch) | |
tree | 0e99289d878c79adc773342aeb34e0b3cad167ad /src/type/testDoubleComplex.c | |
parent | 983e25c5e54c8b5c5ce9ad5df26b31feb87f9285 (diff) | |
download | scilab2c-e15d2967125c1663ca83ec8ddb0bc23e481fef52.tar.gz scilab2c-e15d2967125c1663ca83ec8ddb0bc23e481fef52.tar.bz2 scilab2c-e15d2967125c1663ca83ec8ddb0bc23e481fef52.zip |
Enable warnings
Diffstat (limited to 'src/type/testDoubleComplex.c')
-rw-r--r-- | src/type/testDoubleComplex.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/type/testDoubleComplex.c b/src/type/testDoubleComplex.c index d287cbc0..4e3d94f3 100644 --- a/src/type/testDoubleComplex.c +++ b/src/type/testDoubleComplex.c @@ -1,20 +1,20 @@ /* -** -*- C -*- -** -** main.c -** Made by Bruno JOFRET <bruno.jofret@inria.fr> -** -** Started on Thu Nov 30 16:59:04 2006 jofret -** Last update Mon Oct 22 10:21:07 2007 bruno -** -** Copyright INRIA 2006 -*/ + * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab + * Copyright (C) 2006-2008 - INRIA - Bruno JOFRET + * + * 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 <stdio.h> #include <assert.h> #include "doubleComplex.h" -int main(int argc, char **argv) { +int main(void) { /* z = -3 + 25*%i */ doubleComplex z = DoubleComplex(3,-25); /* y = -3.123456 + 25.123456*%i */ |