blob: 62abffa521a657a39f6f92fb5b3d3bfd50ca9bc4 [file] [log] [blame]
%module restrict_cplusplus
%{
// For PHP 5.3 / gcc-4.4
#ifdef restrict
#undef restrict
#endif
struct Foo {
int restrict;
};
%}
struct Foo {
int restrict;
};