summaryrefslogtreecommitdiff
path: root/src/elementaryFunctions/atan2/datan2s.c
diff options
context:
space:
mode:
authorsimon2008-07-08 10:03:44 +0000
committersimon2008-07-08 10:03:44 +0000
commit8a7e8359a5691bbafe639958e36720aab724826f (patch)
tree08a394604f4ecfb3ea943067e319bd496516d58e /src/elementaryFunctions/atan2/datan2s.c
parent3813a171f1e87c2225ac1e78340a9e1ba1b3bfb8 (diff)
downloadscilab2c-8a7e8359a5691bbafe639958e36720aab724826f.tar.gz
scilab2c-8a7e8359a5691bbafe639958e36720aab724826f.tar.bz2
scilab2c-8a7e8359a5691bbafe639958e36720aab724826f.zip
added atan2 functions
Diffstat (limited to 'src/elementaryFunctions/atan2/datan2s.c')
-rw-r--r--src/elementaryFunctions/atan2/datan2s.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/elementaryFunctions/atan2/datan2s.c b/src/elementaryFunctions/atan2/datan2s.c
new file mode 100644
index 00000000..f6c8637c
--- /dev/null
+++ b/src/elementaryFunctions/atan2/datan2s.c
@@ -0,0 +1,18 @@
+/*
+ * Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
+ * Copyright (C) 2008-2008 - INRIA - Allan SIMON
+ *
+ * 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 "atan2.h"
+
+
+double datan2s ( double x , double y ) {
+ return atan2 ( x, y ) ;
+}