1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
$NetBSD: patch-ah,v 1.2 2005/12/01 18:13:24 wiz Exp $
--- src/fileio.c.orig 1995-06-23 12:25:18.000000000 +0200
+++ src/fileio.c
@@ -2604,8 +2604,6 @@ The value is an integer.")
return value;
}
-#ifdef unix
-
DEFUN ("unix-sync", Funix_sync, Sunix_sync, 0, 0, "",
"Tell Unix to finish all pending disk updates.")
()
@@ -2614,8 +2612,6 @@ DEFUN ("unix-sync", Funix_sync, Sunix_sy
return Qnil;
}
-#endif /* unix */
-
DEFUN ("file-newer-than-file-p", Ffile_newer_than_file_p, Sfile_newer_than_file_p, 2, 2, 0,
"Return t if file FILE1 is newer than file FILE2.\n\
If FILE1 does not exist, the answer is nil;\n\
@@ -4507,7 +4503,5 @@ This applies only to the operation `inhi
defsubr (&Sread_file_name_internal);
defsubr (&Sread_file_name);
-#ifdef unix
defsubr (&Sunix_sync);
-#endif
}
|