summaryrefslogtreecommitdiff
path: root/seti/sltsEngine/src/run_seq_lts.c
diff options
context:
space:
mode:
Diffstat (limited to 'seti/sltsEngine/src/run_seq_lts.c')
-rw-r--r--seti/sltsEngine/src/run_seq_lts.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/seti/sltsEngine/src/run_seq_lts.c b/seti/sltsEngine/src/run_seq_lts.c
index 255a296..1d9fb05 100644
--- a/seti/sltsEngine/src/run_seq_lts.c
+++ b/seti/sltsEngine/src/run_seq_lts.c
@@ -1796,22 +1796,10 @@ void *lts_alloc(int num, int size)
}
#else
-#ifndef __SYMBIAN32__
-static int total_alloc = 0;
-#endif
void *lts_alloc(int num, int size)
{
void *p;
-#ifndef __SYMBIAN32__
- total_alloc += num * size;
-#endif
p = CALLOC(num, size, MTAG);
- /*
-#ifndef __SYMBIAN32__
- pfprintf(PSTDOUT,"LTS Alloc %d X %d p %x tot %d\n", num, size, p, total_alloc);
-#endif
- */
-
return p;
}
#endif /* USE_STATIC_SLTS */