Finish off stub interface files using bin/create_export_code.
[Math-GSL.git] / Sys.i
blob8ab08917ba91ed8100ff36f67d0e340645b82f6a
1 %module Sys
2 %{
3 #include "/usr/local/include/gsl/gsl_sys.h"
4 %}
6 %include "/usr/local/include/gsl/gsl_sys.h"
9 %perlcode %{
10 @EXPORT_OK = qw/
11 gsl_log1p
12 gsl_expm1
13 gsl_hypot
14 gsl_hypot3
15 gsl_acosh
16 gsl_asinh
17 gsl_atanh
18 gsl_isnan
19 gsl_isinf
20 gsl_finite
21 gsl_nan
22 gsl_posinf
23 gsl_neginf
24 gsl_fdiv
25 gsl_coerce_double
26 gsl_coerce_float
27 gsl_coerce_long_double
28 gsl_ldexp
29 gsl_frexp
30 gsl_fcmp
32 %EXPORT_TAGS = ( all => [ @EXPORT_OK ] );