blob: 37906f2333d831f774fc855df0ece2ade355b2b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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__ */
|