git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10290 626c5289-ae23-0410-ae9c-e8d60b6d4f22
17 lines
160 B
Mathematica
17 lines
160 B
Mathematica
li_cmalloc
|
|
|
|
p = malloc_int();
|
|
free_int(p);
|
|
|
|
ok = 0;
|
|
try
|
|
p = calloc_int(-1);
|
|
free_int(p);
|
|
catch
|
|
ok = 1;
|
|
end_try_catch
|
|
|
|
if (ok != 1)
|
|
error
|
|
endif
|
|
|