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:
Marcelo Matus 2006-03-19 23:37:46 +00:00
commit 99eb0abe1f

View file

@ -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();
}
%}