aboutsummaryrefslogtreecommitdiff
path: root/src/library.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/library.js')
-rw-r--r--src/library.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/library.js b/src/library.js
index b2106288..2f9fbdbd 100644
--- a/src/library.js
+++ b/src/library.js
@@ -483,6 +483,11 @@ var Library = {
_free(start); // FIXME: not really correct at all
},
+ setvbuf: function(stream, buffer, mode, size) {
+ // just a stub
+ assert(!buffer);
+ },
+
// stdlib.h
malloc: Runtime.staticAlloc,