From 3c84ded68a9106ac87886e173e75dd3dde33c231 Mon Sep 17 00:00:00 2001
From: "Peter S. Mazinger" <ps.m@gmx.net>
Date: Tue, 13 Dec 2005 11:35:31 +0000
Subject: Convert internal users of chmod/*stat*, minimize change for __strsep

---
 libc/unistd/fpathconf.c | 6 +++---
 libc/unistd/pathconf.c  | 6 +++---
 libc/unistd/usershell.c | 2 +-
 3 files changed, 7 insertions(+), 7 deletions(-)

(limited to 'libc/unistd')

diff --git a/libc/unistd/fpathconf.c b/libc/unistd/fpathconf.c
index 2f6cf7214..5404e7b01 100644
--- a/libc/unistd/fpathconf.c
+++ b/libc/unistd/fpathconf.c
@@ -53,7 +53,7 @@ long int fpathconf(int fd, int name)
 	struct statfs fsbuf;
 
 	/* Determine the filesystem type.  */
-	if (fstatfs (fd, &fsbuf) < 0)
+	if (__fstatfs (fd, &fsbuf) < 0)
 	{
 	    if (errno == ENOSYS)
 		/* not possible, return the default value.  */
@@ -127,7 +127,7 @@ long int fpathconf(int fd, int name)
 		struct statfs buf;
 		int save_errno = errno;
 
-		if (fstatfs (fd, &buf) < 0)
+		if (__fstatfs (fd, &buf) < 0)
 		{
 		    if (errno == ENOSYS)
 		    {
@@ -201,7 +201,7 @@ long int fpathconf(int fd, int name)
 		/* AIO is only allowed on regular files and block devices.  */
 		struct stat st;
 
-		if (fstat (fd, &st) < 0 || (! S_ISREG (st.st_mode) && ! S_ISBLK (st.st_mode)))
+		if (__fstat (fd, &st) < 0 || (! S_ISREG (st.st_mode) && ! S_ISBLK (st.st_mode)))
 		    return -1;
 		else
 		    return 1;
diff --git a/libc/unistd/pathconf.c b/libc/unistd/pathconf.c
index affec4e69..579b99be0 100644
--- a/libc/unistd/pathconf.c
+++ b/libc/unistd/pathconf.c
@@ -57,7 +57,7 @@ long int pathconf(const char *path, int name)
 	struct statfs fsbuf;
 
 	/* Determine the filesystem type.  */
-	if (statfs (path, &fsbuf) < 0)
+	if (__statfs (path, &fsbuf) < 0)
 	{
 	    if (errno == ENOSYS)
 		/* not possible, return the default value.  */
@@ -131,7 +131,7 @@ long int pathconf(const char *path, int name)
 		struct statfs buf;
 		int save_errno = errno;
 
-		if (statfs (path, &buf) < 0)
+		if (__statfs (path, &buf) < 0)
 		{
 		    if (errno == ENOSYS)
 		    {
@@ -205,7 +205,7 @@ long int pathconf(const char *path, int name)
 		/* AIO is only allowed on regular files and block devices.  */
 		struct stat st;
 
-		if (stat (path, &st) < 0 || (! S_ISREG (st.st_mode) && ! S_ISBLK (st.st_mode)))
+		if (__stat (path, &st) < 0 || (! S_ISREG (st.st_mode) && ! S_ISBLK (st.st_mode)))
 		    return -1;
 		else
 		    return 1;
diff --git a/libc/unistd/usershell.c b/libc/unistd/usershell.c
index 2e1f75d38..143dc2630 100644
--- a/libc/unistd/usershell.c
+++ b/libc/unistd/usershell.c
@@ -103,7 +103,7 @@ static char ** initshells(void)
 
     if ((fp = fopen(_PATH_SHELLS, "r")) == NULL)
 	return (char **) validsh;
-    if (fstat(fileno(fp), &statb) == -1) {
+    if (__fstat(fileno(fp), &statb) == -1) {
 	goto cleanup;
     }
     if ((strings = malloc((unsigned)statb.st_size + 1)) == NULL) {
-- 
cgit v1.2.3