summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjofret2008-05-27 08:52:11 +0000
committerjofret2008-05-27 08:52:11 +0000
commit38ab2b240bfd0b5bd652ed6a71f5dd9cd0e03d9b (patch)
tree3049c8af1a0d779e5f20e1404841b50d617e0b1e
parent8094080f92dd73a496b1e694a2504621cdc3f19f (diff)
downloadscilab2c-38ab2b240bfd0b5bd652ed6a71f5dd9cd0e03d9b.tar.gz
scilab2c-38ab2b240bfd0b5bd652ed6a71f5dd9cd0e03d9b.tar.bz2
scilab2c-38ab2b240bfd0b5bd652ed6a71f5dd9cd0e03d9b.zip
License update
-rw-r--r--src/elementaryFunctions/sinh/csinha.c20
-rw-r--r--src/elementaryFunctions/sinh/csinhs.c20
-rw-r--r--src/elementaryFunctions/sinh/dsinha.c20
-rw-r--r--src/elementaryFunctions/sinh/dsinhs.c20
-rw-r--r--src/elementaryFunctions/sinh/ssinha.c20
-rw-r--r--src/elementaryFunctions/sinh/testSinh.h20
-rw-r--r--src/elementaryFunctions/sinh/zsinha.c20
-rw-r--r--src/elementaryFunctions/sinh/zsinhs.c20
8 files changed, 80 insertions, 80 deletions
diff --git a/src/elementaryFunctions/sinh/csinha.c b/src/elementaryFunctions/sinh/csinha.c
index fca522cc..fdce6c58 100644
--- a/src/elementaryFunctions/sinh/csinha.c
+++ b/src/elementaryFunctions/sinh/csinha.c
@@ -1,14 +1,14 @@
/*
-** -*- C -*-
-**
-** csinha.c
-** Made by Bruno JOFRET <bruno.jofret@inria.fr>
-**
-** Started on Fri Dec 8 13:07:37 2006 jofret
-** Last update Mon Oct 22 09:50:51 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 "sinh.h"
diff --git a/src/elementaryFunctions/sinh/csinhs.c b/src/elementaryFunctions/sinh/csinhs.c
index 94d85ff6..d4e7e7d9 100644
--- a/src/elementaryFunctions/sinh/csinhs.c
+++ b/src/elementaryFunctions/sinh/csinhs.c
@@ -1,14 +1,14 @@
/*
-** -*- C -*-
-**
-** csinhs.c
-** Made by Bruno JOFRET <bruno.jofret@inria.fr>
-**
-** Started on Fri Dec 8 12:04:39 2006 jofret
-** Last update Fri Feb 23 17:22:29 2007 jofret
-**
-** Copyright INRIA 2006
-*/
+ * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+ * Copyright (C) 2007-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 "sinh.h"
#include "sin.h"
diff --git a/src/elementaryFunctions/sinh/dsinha.c b/src/elementaryFunctions/sinh/dsinha.c
index 93dcaadf..df28279f 100644
--- a/src/elementaryFunctions/sinh/dsinha.c
+++ b/src/elementaryFunctions/sinh/dsinha.c
@@ -1,14 +1,14 @@
/*
-** -*- C -*-
-**
-** dsinha.c
-** Made by Bruno JOFRET <bruno.jofret@inria.fr>
-**
-** Started on Fri Dec 8 11:02:19 2006 jofret
-** Last update Mon Oct 22 09:50:41 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 "sinh.h"
diff --git a/src/elementaryFunctions/sinh/dsinhs.c b/src/elementaryFunctions/sinh/dsinhs.c
index 4a3418ca..558bea06 100644
--- a/src/elementaryFunctions/sinh/dsinhs.c
+++ b/src/elementaryFunctions/sinh/dsinhs.c
@@ -1,14 +1,14 @@
/*
-** -*- C -*-
-**
-** dsinhs.c
-** Made by Bruno JOFRET <bruno.jofret@inria.fr>
-**
-** Started on Fri Dec 8 10:50:58 2006 jofret
-** Last update Fri Apr 20 14:41:31 2007 jofret
-**
-** 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 <math.h>
#include "sinh.h"
diff --git a/src/elementaryFunctions/sinh/ssinha.c b/src/elementaryFunctions/sinh/ssinha.c
index f4ca7ea5..a095dbe2 100644
--- a/src/elementaryFunctions/sinh/ssinha.c
+++ b/src/elementaryFunctions/sinh/ssinha.c
@@ -1,14 +1,14 @@
/*
-** -*- C -*-
-**
-** ssinha.c
-** Made by Bruno JOFRET <bruno.jofret@inria.fr>
-**
-** Started on Fri Dec 8 10:52:14 2006 jofret
-** Last update Mon Oct 22 09:50:30 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 "sinh.h"
diff --git a/src/elementaryFunctions/sinh/testSinh.h b/src/elementaryFunctions/sinh/testSinh.h
index c28a3953..9ed090c0 100644
--- a/src/elementaryFunctions/sinh/testSinh.h
+++ b/src/elementaryFunctions/sinh/testSinh.h
@@ -1,14 +1,14 @@
/*
-** -*- C -*-
-**
-** testSinh.h
-** Made by Bruno JOFRET <bruno.jofret@inria.fr>
-**
-** Started on Fri Mar 30 12:01:28 2007 jofret
-** Last update Fri Apr 20 16:46:15 2007 jofret
-**
-** Copyright INRIA 2007
-*/
+ * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+ * Copyright (C) 2007-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
+ *
+ */
#ifndef _TESTSINH_H_
#define _TESTSINH_H_
diff --git a/src/elementaryFunctions/sinh/zsinha.c b/src/elementaryFunctions/sinh/zsinha.c
index e3725dbb..59d18d47 100644
--- a/src/elementaryFunctions/sinh/zsinha.c
+++ b/src/elementaryFunctions/sinh/zsinha.c
@@ -1,14 +1,14 @@
/*
-** -*- C -*-
-**
-** zsinha.c
-** Made by Bruno JOFRET <bruno.jofret@inria.fr>
-**
-** Started on Fri Dec 8 14:02:04 2006 jofret
-** Last update Mon Oct 22 09:50:21 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 "sinh.h"
diff --git a/src/elementaryFunctions/sinh/zsinhs.c b/src/elementaryFunctions/sinh/zsinhs.c
index fcaf96ba..3ea4e71c 100644
--- a/src/elementaryFunctions/sinh/zsinhs.c
+++ b/src/elementaryFunctions/sinh/zsinhs.c
@@ -1,14 +1,14 @@
/*
-** -*- C -*-
-**
-** zsinhs.c
-** Made by Bruno JOFRET <bruno.jofret@inria.fr>
-**
-** Started on Fri Dec 8 12:06:35 2006 jofret
-** Last update Fri Feb 23 17:23:10 2007 jofret
-**
-** 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 "sinh.h"
#include "sin.h"