changeset 439:a9015d648b2e

No longer include safe-l?stat.h.
author Jim Meyering <jim@meyering.net>
date Fri, 19 May 1995 15:23:18 +0000
parents c0450a60d9d1
children 79626753a234
files lib/euidaccess.c lib/fsusage.c lib/isdir.c lib/makepath.c lib/mkdir.c lib/rename.c lib/rmdir.c
diffstat 7 files changed, 1 insertions(+), 12 deletions(-) [+]
line wrap: on
line diff
--- a/lib/euidaccess.c
+++ b/lib/euidaccess.c
@@ -74,8 +74,6 @@
 #define R_OK 4
 #endif
 
-#include "safe-stat.h"
-
 /* The user's real user id. */
 static uid_t uid;
 
--- a/lib/fsusage.c
+++ b/lib/fsusage.c
@@ -22,7 +22,6 @@
 #include <sys/types.h>
 #include <sys/stat.h>
 #include "fsusage.h"
-#include "safe-stat.h"
 
 int statfs ();
 
--- a/lib/isdir.c
+++ b/lib/isdir.c
@@ -22,8 +22,6 @@
 #include <sys/types.h>
 #include <sys/stat.h>
 
-#include "safe-stat.h"
-
 #ifdef STAT_MACROS_BROKEN
 #undef S_ISDIR
 #endif /* STAT_MACROS_BROKEN.  */
--- a/lib/makepath.c
+++ b/lib/makepath.c
@@ -78,7 +78,7 @@
 #endif
 
 #include "makepath.h"
-#include "safe-stat.h"
+
 void error ();
 
 /* Ensure that the directory ARGPATH exists.
--- a/lib/mkdir.c
+++ b/lib/mkdir.c
@@ -34,8 +34,6 @@
 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
 #endif
 
-#include "safe-stat.h"
-
 /* mkdir adapted from GNU tar.  */
 
 /* Make directory DPATH, with permission mode DMODE.
--- a/lib/rename.c
+++ b/lib/rename.c
@@ -34,8 +34,6 @@
 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
 #endif
 
-#include "safe-stat.h"
-
 /* Rename file FROM to file TO.
    Return 0 if successful, -1 if not. */
 
--- a/lib/rmdir.c
+++ b/lib/rmdir.c
@@ -35,8 +35,6 @@
 #define S_ISDIR(m) (((m) & S_IFMT) == S_IFDIR)
 #endif
 
-#include "safe-stat.h"
-
 /* rmdir adapted from GNU tar.  */
 
 /* Remove directory DPATH.