diff options
author | Eli Zaretskii <eliz@gnu.org> | 2013-03-30 20:00:51 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2013-03-30 20:00:51 +0300 |
commit | 7c4026b6ad03974a55a175af17c8e76c61931b69 (patch) | |
tree | eac656e59e5aa55044323a4f7fbea7377fb83d0a /lib-src/ntlib.h | |
parent | fff1aa4e84d0568c0295711f58fa18028d100744 (diff) | |
download | emacs-7c4026b6ad03974a55a175af17c8e76c61931b69.tar.gz |
Finished with lib-src compilation, except emacsclientw and emacsclient.res.
Next -- compilation in nt/, and then problems in src/.
Diffstat (limited to 'lib-src/ntlib.h')
-rw-r--r-- | lib-src/ntlib.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib-src/ntlib.h b/lib-src/ntlib.h index 1b2f57f35e5..3e48d2997e0 100644 --- a/lib-src/ntlib.h +++ b/lib-src/ntlib.h @@ -16,7 +16,6 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ - #include <pwd.h> #include <malloc.h> @@ -29,12 +28,13 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ #ifdef sleep #undef sleep #endif -void sleep (unsigned long seconds); +unsigned sleep (unsigned seconds); char *getwd (char *dir); int getppid (void); char * getlogin (void); char * cuserid (char * s); unsigned getuid (void); +unsigned geteuid (void); unsigned getegid (void); unsigned getgid (void); int setuid (unsigned uid); |