From 14baf7d8e5ef66b43c78ed1256735ec496faa92c Mon Sep 17 00:00:00 2001 From: jofret Date: Mon, 23 Apr 2007 15:35:32 +0000 Subject: Oups just forgot the header... --- src/auxiliaryFunctions/includes/pythag.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/auxiliaryFunctions/includes/pythag.h (limited to 'src') 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 +** +** 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__ */ -- cgit