Files
cpp-thirdparty/winx64/bin/swigwin-4.0.0/Examples/test-suite/restrict_cplusplus.i
2019-08-04 21:38:19 -05:00

17 lines
213 B
OpenEdge ABL

%module restrict_cplusplus
%{
// Workaround PHP's headers which do:
// #define restrict __restrict__
#ifdef restrict
#undef restrict
#endif
struct Foo {
int restrict;
};
%}
struct Foo {
int restrict;
};