forked from starnakin/IronGOLEM
fix: function have the right name
This commit is contained in:
@ -1,8 +1,9 @@
|
||||
putnum(number)
|
||||
{
|
||||
local str = itoa(number);
|
||||
local str;
|
||||
str = itoa(number);
|
||||
if (str == 0)
|
||||
return;
|
||||
print_str(str);
|
||||
putstr(str);
|
||||
free(str);
|
||||
}
|
||||
|
Reference in New Issue
Block a user