* gnus.el (gnus-article-date-ut): Avoid race condition.
[emacs.git] / lib-src / ntlib.h
blob1598a291e7330b422590d0287d5343e5fb92ebd1
1 /* Utility and Unix shadow routines for GNU Emacs support programs on NT.
2 Copyright (C) 1994 Free Software Foundation, Inc.
4 This file is part of GNU Emacs.
6 GNU Emacs is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by the
8 Free Software Foundation; either version 2, or (at your option) any later
9 version.
11 GNU Emacs is distributed in the hope that it will be useful, but WITHOUT
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 more details.
16 You should have received a copy of the GNU General Public License along
17 with GNU Emacs; see the file COPYING. If not, write to the Free Software
18 Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
22 #include <pwd.h>
23 #include <malloc.h>
25 void sleep(int seconds);
26 int getwd (char *dir);
27 int getppid(void);
28 char * getlogin ();
29 char * cuserid (char * s);
30 int getuid ();
31 int setuid (int uid);
32 struct passwd * getpwuid (int uid);
33 char * getpass (const char * prompt);
34 int fchown (int fd, int uid, int gid);
36 #ifndef BSTRING
37 #define bzero(b, l) memset(b, 0, l)
38 #define bcopy(s, d, l) memcpy(d, s, l)
39 #define bcmp(a, b, l) memcmp(a, b, l)
41 #define index strchr
42 #define rindex strrchr
43 #endif
45 /* end of ntlib.h */