diff options
author | Richard M. Stallman <rms@gnu.org> | 1989-06-15 16:52:48 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1989-06-15 16:52:48 +0000 |
commit | 9cbb09f8fae2424ec2380a925795833e2e247eaa (patch) | |
tree | 8fedd3fecff21a4294c1b3f74a82066987afa9ed /lib-src | |
parent | dd5e1ae122a4a4dd48c171f3701038a2b24d261a (diff) | |
download | emacs-9cbb09f8fae2424ec2380a925795833e2e247eaa.tar.gz |
*** empty log message ***
Diffstat (limited to 'lib-src')
-rw-r--r-- | lib-src/movemail.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib-src/movemail.c b/lib-src/movemail.c index 961d2eaa1ac..b0a3a1df32d 100644 --- a/lib-src/movemail.c +++ b/lib-src/movemail.c @@ -46,6 +46,12 @@ copyright notice and this notice must be preserved on all copies. */ #ifdef USG #include <fcntl.h> #include <unistd.h> +#ifndef F_OK +#define F_OK 0 +#define X_OK 1 +#define W_OK 2 +#define R_OK 4 +#endif #endif /* USG */ #ifdef XENIX |