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
Finish off stub interface files using bin/create_export_code.
[Math-GSL.git]
/
Diff.i
blob
1389f8ba8403e2a117ecf3d53080ec1f65e22483
1
%
module Diff
2
%{
3
#include
"/usr/local/include/gsl/gsl_diff.h"
4
%}
5
6
%
include
"/usr/local/include/gsl/gsl_diff.h"
7
8
9
%
perlcode
%{
10
@EXPORT_OK
=
qw
/
11
gsl_diff_central
12
gsl_diff_backward
13
gsl_diff_forward
14
/;
15
%
EXPORT_TAGS
= (
all
=> [
@EXPORT_OK
] );
16
%}