blob: cfd5fa7222e8c650f59138837aa454d229a56d90 [file] [log] [blame]
/* This interface file tests whether SWIG's extended C
preprocessor is working right.
In this example, SWIG 1.3a5 reports missing macro arguments, which
is bogus.
*/
%define FOO(C_TYPE, GETLENGTH)
/* nothing */
%enddef
%define BAR(XYZZY)
FOO(XYZZY, 1)
%enddef
BAR(int)