emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/nt/inc/sys/stat.h,v


From: Eli Zaretskii
Subject: [Emacs-diffs] Changes to emacs/nt/inc/sys/stat.h,v
Date: Fri, 09 May 2008 18:59:50 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Changes by:     Eli Zaretskii <eliz>    08/05/09 18:59:50

Index: stat.h
===================================================================
RCS file: /cvsroot/emacs/emacs/nt/inc/sys/stat.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- stat.h      9 May 2008 05:13:51 -0000       1.4
+++ stat.h      9 May 2008 18:59:49 -0000       1.5
@@ -57,17 +57,19 @@
 #define        S_ISFIFO(m)     (((m) & S_IFMT) == S_IFIFO)
 
 struct stat {
-  dev_t st_dev;
   unsigned __int64 st_ino;     /* ino_t in sys/types.h is too narrow */
+  dev_t st_dev;
   unsigned short   st_mode;
   short                   st_nlink;
   int             st_uid;
   int             st_gid;
+  unsigned __int64 st_size;
   dev_t                   st_rdev;
-  off_t                   st_size;
   time_t          st_atime;
   time_t          st_mtime;
   time_t          st_ctime;
+  char            st_uname[260];
+  char            st_gname[260];
 };
 
 _CRTIMP int __cdecl __MINGW_NOTHROW    fstat (int, struct stat*);




reply via email to

[Prev in Thread] Current Thread [Next in Thread]