summaryrefslogtreecommitdiff
path: root/src/c/auxiliaryFunctions/rand
diff options
context:
space:
mode:
authorsiddhu89902017-04-19 11:56:09 +0530
committersiddhu89902017-04-19 11:56:09 +0530
commit453598b49cb3d4a62b1797dbc90f0e3dd4521329 (patch)
tree9d10176d0a4be5eb567ade03e1dd6172c77605e4 /src/c/auxiliaryFunctions/rand
parentaceeb1fe05a8ff6c126ea9ba166a19249488dbd1 (diff)
downloadscilab2c-453598b49cb3d4a62b1797dbc90f0e3dd4521329.tar.gz
scilab2c-453598b49cb3d4a62b1797dbc90f0e3dd4521329.tar.bz2
scilab2c-453598b49cb3d4a62b1797dbc90f0e3dd4521329.zip
Copyright message updated in added files and libraries separated in 'thirdparty' folder
Diffstat (limited to 'src/c/auxiliaryFunctions/rand')
-rw-r--r--src/c/auxiliaryFunctions/rand/i16randa.c13
-rw-r--r--src/c/auxiliaryFunctions/rand/i16rands.c13
-rw-r--r--src/c/auxiliaryFunctions/rand/i8randa.c13
-rw-r--r--src/c/auxiliaryFunctions/rand/i8rands.c13
-rw-r--r--src/c/auxiliaryFunctions/rand/u16randa.c13
-rw-r--r--src/c/auxiliaryFunctions/rand/u16rands.c13
-rw-r--r--src/c/auxiliaryFunctions/rand/u8randa.c13
-rw-r--r--src/c/auxiliaryFunctions/rand/u8rands.c13
8 files changed, 96 insertions, 8 deletions
diff --git a/src/c/auxiliaryFunctions/rand/i16randa.c b/src/c/auxiliaryFunctions/rand/i16randa.c
index f3d8dd37..b6aa741d 100644
--- a/src/c/auxiliaryFunctions/rand/i16randa.c
+++ b/src/c/auxiliaryFunctions/rand/i16randa.c
@@ -1,4 +1,15 @@
-/* Scilab2C FOSSEE IIT BOMBAY */
+/* Copyright (C) 2016 - IIT Bombay - FOSSEE
+
+ 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
+ Author: Mushir
+ Organization: FOSSEE, IIT Bombay
+ Email: toolbox@scilab.in
+*/
+
#include "rand.h"
void i16randa(double *out,int size)
diff --git a/src/c/auxiliaryFunctions/rand/i16rands.c b/src/c/auxiliaryFunctions/rand/i16rands.c
index ca2ed9cd..67173d23 100644
--- a/src/c/auxiliaryFunctions/rand/i16rands.c
+++ b/src/c/auxiliaryFunctions/rand/i16rands.c
@@ -1,4 +1,15 @@
-/* Scilab2C FOSSEE IIT Bombay */
+/* Copyright (C) 2016 - IIT Bombay - FOSSEE
+
+ 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
+ Author: Mushir
+ Organization: FOSSEE, IIT Bombay
+ Email: toolbox@scilab.in
+*/
+
#include "rand.h"
#include <stdio.h>
diff --git a/src/c/auxiliaryFunctions/rand/i8randa.c b/src/c/auxiliaryFunctions/rand/i8randa.c
index d679c65f..68d3ff3b 100644
--- a/src/c/auxiliaryFunctions/rand/i8randa.c
+++ b/src/c/auxiliaryFunctions/rand/i8randa.c
@@ -1,4 +1,15 @@
-/* Scilab2C FOSSEE IIT BOMBAY */
+/* Copyright (C) 2016 - IIT Bombay - FOSSEE
+
+ 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
+ Author: Mushir
+ Organization: FOSSEE, IIT Bombay
+ Email: toolbox@scilab.in
+*/
+
#include "rand.h"
void i8randa(double *out,int size)
diff --git a/src/c/auxiliaryFunctions/rand/i8rands.c b/src/c/auxiliaryFunctions/rand/i8rands.c
index 55df9093..e9b30a33 100644
--- a/src/c/auxiliaryFunctions/rand/i8rands.c
+++ b/src/c/auxiliaryFunctions/rand/i8rands.c
@@ -1,4 +1,15 @@
-/* Scilab2C FOSSEE IIT Bombay */
+/* Copyright (C) 2016 - IIT Bombay - FOSSEE
+
+ 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
+ Author: Mushir
+ Organization: FOSSEE, IIT Bombay
+ Email: toolbox@scilab.in
+*/
+
#include "rand.h"
#include <stdio.h>
diff --git a/src/c/auxiliaryFunctions/rand/u16randa.c b/src/c/auxiliaryFunctions/rand/u16randa.c
index f5393369..cfcfb50f 100644
--- a/src/c/auxiliaryFunctions/rand/u16randa.c
+++ b/src/c/auxiliaryFunctions/rand/u16randa.c
@@ -1,4 +1,15 @@
-/* Scilab2C FOSSEE IIT BOMBAY */
+/* Copyright (C) 2016 - IIT Bombay - FOSSEE
+
+ 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
+ Author: Mushir
+ Organization: FOSSEE, IIT Bombay
+ Email: toolbox@scilab.in
+*/
+
#include "rand.h"
void u16randa(double *out,int size)
diff --git a/src/c/auxiliaryFunctions/rand/u16rands.c b/src/c/auxiliaryFunctions/rand/u16rands.c
index a08d6a8c..2023be4a 100644
--- a/src/c/auxiliaryFunctions/rand/u16rands.c
+++ b/src/c/auxiliaryFunctions/rand/u16rands.c
@@ -1,4 +1,15 @@
-/* Scilab2C FOSSEE IIT Bombay */
+/* Copyright (C) 2016 - IIT Bombay - FOSSEE
+
+ 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
+ Author: Mushir
+ Organization: FOSSEE, IIT Bombay
+ Email: toolbox@scilab.in
+*/
+
#include "rand.h"
#include <stdio.h>
diff --git a/src/c/auxiliaryFunctions/rand/u8randa.c b/src/c/auxiliaryFunctions/rand/u8randa.c
index 4d7d3f8a..a7fc5836 100644
--- a/src/c/auxiliaryFunctions/rand/u8randa.c
+++ b/src/c/auxiliaryFunctions/rand/u8randa.c
@@ -1,4 +1,15 @@
-/* Scilab2C FOSSEE IIT BOMBAY */
+/* Copyright (C) 2016 - IIT Bombay - FOSSEE
+
+ 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
+ Author: Mushir
+ Organization: FOSSEE, IIT Bombay
+ Email: toolbox@scilab.in
+*/
+
#include "rand.h"
#include<stdio.h>
void u8randa(double *out,int size)
diff --git a/src/c/auxiliaryFunctions/rand/u8rands.c b/src/c/auxiliaryFunctions/rand/u8rands.c
index bdf7f9a5..d03741a4 100644
--- a/src/c/auxiliaryFunctions/rand/u8rands.c
+++ b/src/c/auxiliaryFunctions/rand/u8rands.c
@@ -1,4 +1,15 @@
-/* Scilab2C FOSSEE IIT Bombay */
+/* Copyright (C) 2016 - IIT Bombay - FOSSEE
+
+ 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
+ Author: Mushir
+ Organization: FOSSEE, IIT Bombay
+ Email: toolbox@scilab.in
+*/
+
#include "rand.h"
#include <stdio.h>