diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-02-28 14:09:29 -0500 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-02-28 14:09:29 -0500 |
commit | 46969771d06478d5204d2b3578412bab3ae6b5f3 (patch) | |
tree | 4aa1ca25762e2bfc69d756abfdef96302c4058e3 | |
parent | 9c0ebb1072b35d98e437ab0438e26c4bd67d7a43 (diff) |
add missing calloc dependency in gc
-rw-r--r-- | src/library_gc.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library_gc.js b/src/library_gc.js index 083019ca..f6db74d8 100644 --- a/src/library_gc.js +++ b/src/library_gc.js @@ -4,7 +4,7 @@ if (GC_SUPPORT) { EXPORTED_FUNCTIONS['_realloc'] = 1; var LibraryGC = { - $GC__deps: ['sbrk', 'realloc'], + $GC__deps: ['sbrk', 'realloc', 'calloc'], $GC: { ALLOCATIONS_TO_GC: 1*1024*1024, |