diff options
-rw-r--r-- | src/library.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/library.js b/src/library.js index bad7c137..74ebdc07 100644 --- a/src/library.js +++ b/src/library.js @@ -5955,6 +5955,7 @@ LibraryManager.library = { }, setitimer: function() { throw 'setitimer not implemented yet' }, + getitimer: function() { throw 'getitimer not implemented yet' }, // ========================================================================== // sys/time.h @@ -7172,6 +7173,13 @@ LibraryManager.library = { initgroups: function() { throw 'initgroups: TODO' }, + // pwd.h + + getpwnam: function() { throw 'getpwnam: TODO' }, + setpwent: function() { throw 'setpwent: TODO' }, + getpwent: function() { throw 'getpwent: TODO' }, + endpwent: function() { throw 'endpwent: TODO' }, + // ========================================================================== // emscripten.h // ========================================================================== |