diff options
author | max99x <max99x@gmail.com> | 2011-08-30 10:02:42 +0300 |
---|---|---|
committer | max99x <max99x@gmail.com> | 2011-08-30 10:02:42 +0300 |
commit | 0b2268fc82cf5f51ffb6ff38ee417a9e977c3fef (patch) | |
tree | 2cd96fd03d325c687c0bd16a1d4dbc8d17a189c0 | |
parent | 5deca8996548dc34826d3a669d4a2f62d3909f4d (diff) |
Added another scanf alias; fixed vsscanf's alias.
-rw-r--r-- | src/library.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/library.js b/src/library.js index 0db44e78..9b216210 100644 --- a/src/library.js +++ b/src/library.js @@ -3076,11 +3076,12 @@ LibraryManager.library = { vsprintf: 'sprintf', vscanf: 'scanf', vfscanf: 'fscanf', - vsscanf: 'fsscanf', + vsscanf: 'sscanf', __01fopen64_: 'fopen', __01fseeko64_: 'fseek', __01ftello64_: 'ftell', __01tmpfile64_: 'tmpfile', + __isoc99_fscanf: 'fscanf', // TODO: Check if any other aliases are needed. _IO_getc: 'getc', _IO_putc: 'putc', |