Upstream version 1.3.40
[profile/ivi/swig.git] / Examples / mzscheme / simple / example.i
1 /* File : example.i */
2 %module example
3 %{
4 /* Put headers and other declarations here */
5 %}
6
7 %include typemaps.i
8
9 %rename(mod) my_mod;
10
11 %inline %{
12 extern double My_variable;
13 extern int    fact(int);
14 extern int    my_mod(int n, int m);
15 extern char   *get_time();
16 %}