summaryrefslogtreecommitdiff
path: root/Examples/octave/module_load/example.i
blob: bd0e39937ab2ff61781cc4dee3a1e588b4c1d5fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* File : example.i */
/* module name given on cmdline */

%feature("autodoc", 1);

%{
#include "example.h"
%}

extern "C" int ivar;

int ifunc();