~ubuntu-branches/debian/sid/gsl/sid

« back to all changes in this revision

Viewing changes to sys/coerce.c

  • Committer: Bazaar Package Importer
  • Author(s): Dirk Eddelbuettel
  • Date: 2008-12-16 06:17:55 UTC
  • mfrom: (1.3.2 upstream) (3.1.15 jaunty)
  • Revision ID: james.westby@ubuntu.com-20081216061755-9la7p0qwrhopk8pl
Tags: 1.12+dfsg-1
* New upstream version released today

* doc/*: As before, removed the 'non-free' documentation to create a 
  source package that complies with Debian's interpretation of what is free. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
#include <config.h>
21
21
#include <math.h>
22
 
 
23
 
double gsl_coerce_double (const double x);
 
22
#include <gsl/gsl_sys.h>
24
23
 
25
24
double 
26
25
gsl_coerce_double (const double x)
30
29
  return y;
31
30
}
32
31
 
33
 
float gsl_coerce_float (const float x);
34
 
 
35
32
float 
36
33
gsl_coerce_float (const float x)
37
34
{
42
39
 
43
40
/* The following function is not needed, but is included for completeness */
44
41
 
45
 
long double gsl_coerce_long_double (const long double x);
46
 
 
47
42
long double 
48
43
gsl_coerce_long_double (const long double x)
49
44
{