repo.or.cz
/
Math-GSL.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixed hardcoded include file location of /usr/local/include, now ExtUtils::PkgConfig...
[Math-GSL.git]
/
Sys.i
blob
60b4db220ea9ee2e09dc9985abfd4fa4db1b08c7
1
%{
2
#include
"gsl/gsl_sys.h"
3
%}
4
%
include
"gsl/gsl_sys.h"
5
%
perlcode
%{
6
our @
EXPORT
=
qw
();
7
our @EXPORT_OK
=
qw
/
8
gsl_log1p
9
gsl_expm1
10
gsl_hypot
11
gsl_hypot3
12
gsl_acosh
13
gsl_asinh
14
gsl_atanh
15
gsl_isnan
16
gsl_isinf
17
gsl_finite
18
gsl_nan
19
gsl_posinf
20
gsl_neginf
21
gsl_fdiv
22
gsl_coerce_double
23
gsl_coerce_float
24
gsl_coerce_long_double
25
gsl_ldexp
26
gsl_frexp
27
gsl_fcmp
28
/;
29
30
our
%
EXPORT_TAGS
= (
all
=>
\@EXPORT_OK
);
31
32
%}