changeset 26565:b50a0a8a0825

Include sys/stat.h. Declare filemodestring.
author Dave Love <fx@gnu.org>
date Wed, 24 Nov 1999 12:56:02 +0000
parents 6d4aa8156033
children 16fe8fbed828
files src/dired.c
diffstat 1 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/dired.c	Wed Nov 24 02:29:08 1999 +0000
+++ b/src/dired.c	Wed Nov 24 12:56:02 1999 +0000
@@ -66,6 +66,8 @@
 #endif
 #endif /* not NONSYSTEM_DIR_LIBRARY */
 
+#include <sys/stat.h>
+
 #ifndef MSDOS
 #define DIRENTRY struct direct
 
@@ -91,6 +93,9 @@
 /* Returns a search buffer, with a fastmap allocated and ready to go.  */
 extern struct re_pattern_buffer *compile_pattern ();
 
+/* From filemode.c.  Can't go in Lisp.h because of `stat'.  */
+extern void filemodestring P_ ((struct stat *, char *));
+
 #define min(a, b) ((a) < (b) ? (a) : (b))
 
 /* if system does not have symbolic links, it does not have lstat.