From a6e5fe5da63ed2dd8db74504075abacd2d557754 Mon Sep 17 00:00:00 2001 From: jofret Date: Tue, 11 Sep 2007 16:02:09 +0000 Subject: End of prototyping all elementary functions. Just need some code (wait for an internship). --- src/elementaryFunctions/atan/satans.c | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 src/elementaryFunctions/atan/satans.c (limited to 'src/elementaryFunctions/atan/satans.c') diff --git a/src/elementaryFunctions/atan/satans.c b/src/elementaryFunctions/atan/satans.c new file mode 100644 index 00000000..43f5b2a7 --- /dev/null +++ b/src/elementaryFunctions/atan/satans.c @@ -0,0 +1,18 @@ +/* +** -*- C -*- +** +** satans.c +** Made by Bruno JOFRET +** +** Started on Thu Dec 7 11:05:37 2006 jofret +** Last update Thu Sep 6 11:53:39 2007 bruno +** +** Copyright INRIA 2006 +*/ + +#include +#include "atan.h" + +float satans(float x) { + return (atan(x)); +} -- cgit