blob: f4fc11e6637015f908cb1c82fa35c170450a5278 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* -*- c -*- */
/* File : example.i */
%module example
%{
/* Put headers and other declarations here */
extern double My_variable;
extern int fact(int);
extern int my_mod(int n, int m);
%}
extern double My_variable;
extern int fact(int);
extern int my_mod(int n, int m);
|