diff options
| author | Gerd Moellmann | 2000-03-01 12:51:03 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-03-01 12:51:03 +0000 |
| commit | 5df5e07ce6fd776c8c28b8a39c881d4e3ebd748f (patch) | |
| tree | 1a2b62ad3062e6bb51d1c7bf7b4716dba549b01f /src | |
| parent | 1e6a9aaf62b5d68cdf3491791695b8ffbde2d49e (diff) | |
| download | emacs-5df5e07ce6fd776c8c28b8a39c881d4e3ebd748f.tar.gz emacs-5df5e07ce6fd776c8c28b8a39c881d4e3ebd748f.zip | |
[__NetBSD__]: Define `unix'.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fileio.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c index b731916f438..8c03a5b595b 100644 --- a/src/fileio.c +++ b/src/fileio.c | |||
| @@ -3215,9 +3215,13 @@ The value is an integer.") | |||
| 3215 | XSETINT (value, (~ realmask) & 0777); | 3215 | XSETINT (value, (~ realmask) & 0777); |
| 3216 | return value; | 3216 | return value; |
| 3217 | } | 3217 | } |
| 3218 | |||
| 3218 | 3219 | ||
| 3219 | #ifdef unix | 3220 | #ifdef __NetBSD__ |
| 3221 | #define unix 42 | ||
| 3222 | #endif | ||
| 3220 | 3223 | ||
| 3224 | #ifdef unix | ||
| 3221 | DEFUN ("unix-sync", Funix_sync, Sunix_sync, 0, 0, "", | 3225 | DEFUN ("unix-sync", Funix_sync, Sunix_sync, 0, 0, "", |
| 3222 | "Tell Unix to finish all pending disk updates.") | 3226 | "Tell Unix to finish all pending disk updates.") |
| 3223 | () | 3227 | () |