aboutsummaryrefslogtreecommitdiff
path: root/Examples/test-suite/restrict_cplusplus.i
blob: 62abffa521a657a39f6f92fb5b3d3bfd50ca9bc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
%module restrict_cplusplus

%{
// For PHP 5.3 / gcc-4.4
#ifdef restrict
#undef restrict
#endif
struct Foo {
    int restrict;
};
%}

struct Foo {
    int restrict;
};