Files
ANSLibs/swig-4.3.0/Examples/test-suite/errors/c_redefine.i

21 lines
130 B
OpenEdge ABL
Raw Normal View History

%module xxx
int foo(int x, int y);
int foo;
int bar(int x);
struct bar {
int y;
};
%rename(bar) spam;
int spam(int);