blob: a40fa7cdf5d50dcb56f26ee620fd0506b1e5df16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*
** -*- C -*-
**
** dpythags.c
** Made by Bruno JOFRET <bruno.jofret@inria.fr>
**
** Started on Mon Apr 23 11:54:15 2007 jofret
** Last update Thu Aug 16 12:10:17 2007 bruno
**
** Copyright INRIA 2007
*/
#include "pythag.h"
double dpythags(double x, double y) {
return (dsqrts( (x*x) + (y*y) ) );
}
|