tcl long long overloading fix - bug #1191835, patch from Jeroen Dobbelaere

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@7202 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2005-05-20 23:51:31 +00:00
commit c5b8ac0fc7
2 changed files with 16 additions and 2 deletions

View file

@ -108,6 +108,13 @@ static char *bar(void *) {
};
%}
%inline %{
void ull() {}
void ull(unsigned long long ull) {}
void ll() {}
void ll(long long ull) {}
%}
%include cmalloc.i
%malloc(void);