diff options
author | jofret | 2007-04-23 15:35:32 +0000 |
---|---|---|
committer | jofret | 2007-04-23 15:35:32 +0000 |
commit | 14baf7d8e5ef66b43c78ed1256735ec496faa92c (patch) | |
tree | 24dbba9e76cb1370bd45b42db65b702ab1be3af8 /src | |
parent | c9f4aeec27c6c9c3a0fa9ab8c1a6132b506f6814 (diff) | |
download | scilab2c-14baf7d8e5ef66b43c78ed1256735ec496faa92c.tar.gz scilab2c-14baf7d8e5ef66b43c78ed1256735ec496faa92c.tar.bz2 scilab2c-14baf7d8e5ef66b43c78ed1256735ec496faa92c.zip |
Oups just forgot the header...
Diffstat (limited to 'src')
-rw-r--r-- | src/auxiliaryFunctions/includes/pythag.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/auxiliaryFunctions/includes/pythag.h b/src/auxiliaryFunctions/includes/pythag.h new file mode 100644 index 00000000..37906f23 --- /dev/null +++ b/src/auxiliaryFunctions/includes/pythag.h @@ -0,0 +1,28 @@ +/* +** -*- C -*- +** +** pythag.h +** Made by Bruno JOFRET <bruno.jofret@inria.fr> +** +** Started on Thu Feb 8 10:12:17 2007 jofret +** Last update Mon Apr 23 12:10:10 2007 jofret +** +** Copyright INRIA 2007 +*/ + +#ifndef __PYTHAG_H__ +#define __PYTHAG_H__ + +#include "sqrt.h" + +/* +** \brief Float Pythag function +*/ +float spythags(float x, float y); + +/* +** \brief Double Pythag function +*/ +double dpythags(double x, double y); + +#endif /* !__PYTHAG_H__ */ |