diff options
| author | Richard M. Stallman | 1989-06-15 16:52:48 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1989-06-15 16:52:48 +0000 |
| commit | 4ec9a77ab63e5f0431b86aa6ed6d6fd55a76e327 (patch) | |
| tree | 631be99664d98a5ad801e16c763573f4627d6c02 /lib-src | |
| parent | bdf34e4982ac351cbfe50db8d2caf3dee342db18 (diff) | |
| download | emacs-4ec9a77ab63e5f0431b86aa6ed6d6fd55a76e327.tar.gz emacs-4ec9a77ab63e5f0431b86aa6ed6d6fd55a76e327.zip | |
*** 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. */ | |||
| 46 | #ifdef USG | 46 | #ifdef USG |
| 47 | #include <fcntl.h> | 47 | #include <fcntl.h> |
| 48 | #include <unistd.h> | 48 | #include <unistd.h> |
| 49 | #ifndef F_OK | ||
| 50 | #define F_OK 0 | ||
| 51 | #define X_OK 1 | ||
| 52 | #define W_OK 2 | ||
| 53 | #define R_OK 4 | ||
| 54 | #endif | ||
| 49 | #endif /* USG */ | 55 | #endif /* USG */ |
| 50 | 56 | ||
| 51 | #ifdef XENIX | 57 | #ifdef XENIX |