summaryrefslogtreecommitdiff
path: root/tests/projects/swig/python_c_with_soabi/src/example.i
blob: 34193edc7d0a82ef64d4f9a422ff9a96558263b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
%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);