diff options
author | Gerd Moellmann <gerd@gnu.org> | 2000-03-01 12:51:03 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2000-03-01 12:51:03 +0000 |
commit | 5df5e07ce6fd776c8c28b8a39c881d4e3ebd748f (patch) | |
tree | 1a2b62ad3062e6bb51d1c7bf7b4716dba549b01f /src/fileio.c | |
parent | 1e6a9aaf62b5d68cdf3491791695b8ffbde2d49e (diff) | |
download | emacs-5df5e07ce6fd776c8c28b8a39c881d4e3ebd748f.tar.gz |
[__NetBSD__]: Define `unix'.
Diffstat (limited to 'src/fileio.c')
-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.") XSETINT (value, (~ realmask) & 0777); return value; } + -#ifdef unix +#ifdef __NetBSD__ +#define unix 42 +#endif +#ifdef unix DEFUN ("unix-sync", Funix_sync, Sunix_sync, 0, 0, "", "Tell Unix to finish all pending disk updates.") () |