diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-09-07 15:20:54 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-09-07 15:20:54 -0700 |
commit | af88c4ce7135523b90d71812717470d08d472148 (patch) | |
tree | 93fbaf42303b8137a836fbce7741f6dc2c0cb9f7 | |
parent | fa5c7b07f9360d46738cfcace12805a9c44b3c7e (diff) |
additional library aliases
-rw-r--r-- | src/library.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/library.js b/src/library.js index 4fdc3ad8..66fa72ae 100644 --- a/src/library.js +++ b/src/library.js @@ -2816,6 +2816,7 @@ LibraryManager.library = { } }, fseeko: 'fseek', + fseeko64: 'fseek', fsetpos__deps: ['$FS', 'lseek', '__setErrNo', '$ERRNO_CODES'], fsetpos: function(stream, pos) { // int fsetpos(FILE *stream, const fpos_t *pos); @@ -2854,6 +2855,7 @@ LibraryManager.library = { } }, ftello: 'ftell', + ftello64: 'ftell', fwrite__deps: ['$FS', 'write'], fwrite: function(ptr, size, nitems, stream) { // size_t fwrite(const void *restrict ptr, size_t size, size_t nitems, FILE *restrict stream); |