fix names for ruby
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@9017 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
fde04302a7
commit
99eb0abe1f
1 changed files with 4 additions and 4 deletions
|
|
@ -31,13 +31,13 @@
|
|||
typedef struct {
|
||||
int a;
|
||||
int b;
|
||||
} a_t, *b_t;
|
||||
} A_t, *B_t;
|
||||
|
||||
a_t* make_a() {
|
||||
return (a_t*)malloc(sizeof(a_t));
|
||||
A_t* make_a() {
|
||||
return (A_t*)malloc(sizeof(A_t));
|
||||
}
|
||||
|
||||
b_t make_b() {
|
||||
B_t make_b() {
|
||||
return make_a();
|
||||
}
|
||||
%}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue