SCI: Removed sci_memory.h/.cpp

svn-id: r40514
This commit is contained in:
Max Horn 2009-05-12 23:30:10 +00:00
parent 8d8e9d3aaa
commit 0255cd0213
43 changed files with 91 additions and 331 deletions

View file

@ -518,7 +518,7 @@ void kernel_compile_signature(const char **s) {
if (!src)
return; // NULL signature: Nothing to do
result = (char*)sci_malloc(strlen(*s) + 1);
result = (char*)malloc(strlen(*s) + 1);
while (*src) {
char c;