mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Move sys/stat.h functions into their own directory.
This commit is contained in:
parent
0d4a25396b
commit
ecbb19273b
14 changed files with 26 additions and 26 deletions
|
@ -166,7 +166,6 @@ arpa/inet/inet_ntoa.o \
|
|||
arpa/inet/inet_ntop.o \
|
||||
arpa/inet/inet_pton.o \
|
||||
calltrace.o \
|
||||
chmod.o \
|
||||
$(CPUDIR)/calltrace.o \
|
||||
$(CPUDIR)/fork.o \
|
||||
$(CPUDIR)/setjmp.o \
|
||||
|
@ -177,8 +176,6 @@ dirent/scandir.o \
|
|||
dispmsg_issue.o \
|
||||
dlfcn.o \
|
||||
errorprint.o \
|
||||
fchmodat.o \
|
||||
fchmod.o \
|
||||
fcloseall.o \
|
||||
fcntl/creat.o \
|
||||
fcntl/fcntl.o \
|
||||
|
@ -198,9 +195,6 @@ fsmarshall/fsm_listen.o \
|
|||
fsmarshall/fsm_mkserver.o \
|
||||
fsmarshall/fsm_recv.o \
|
||||
fsmarshall/fsm_send.o \
|
||||
fstatat.o \
|
||||
fstat.o \
|
||||
futimens.o \
|
||||
getc.o \
|
||||
gettermmode.o \
|
||||
grp/grent.o \
|
||||
|
@ -211,9 +205,6 @@ libgen/basename.o \
|
|||
libgen/dirname.o \
|
||||
locale/localeconv.o \
|
||||
locale/setlocale.o \
|
||||
lstat.o \
|
||||
mkdirat.o \
|
||||
mkdir.o \
|
||||
netdb/endhostent.o \
|
||||
netdb/endnetent.o \
|
||||
netdb/endprotoent.o \
|
||||
|
@ -262,7 +253,6 @@ signal/SIG_ERR.o \
|
|||
signal/SIG_IGN.o \
|
||||
signal/signal.o \
|
||||
signal/sigprocmask.o \
|
||||
stat.o \
|
||||
stdio.o \
|
||||
stdlib/canonicalize_file_name_at.o \
|
||||
stdlib/canonicalize_file_name.o \
|
||||
|
@ -293,6 +283,19 @@ sys/socket/shutdown.o \
|
|||
sys/socket/sockatmark.o \
|
||||
sys/socket/socket.o \
|
||||
sys/socket/socketpair.o \
|
||||
sys/stat/chmod.o \
|
||||
sys/stat/fchmodat.o \
|
||||
sys/stat/fchmod.o \
|
||||
sys/stat/fstatat.o \
|
||||
sys/stat/fstat.o \
|
||||
sys/stat/futimens.o \
|
||||
sys/stat/lstat.o \
|
||||
sys/stat/mkdirat.o \
|
||||
sys/stat/mkdir.o \
|
||||
sys/stat/stat.o \
|
||||
sys/stat/umask.o \
|
||||
sys/stat/utimensat.o \
|
||||
sys/stat/utimens.o \
|
||||
sys/time/gettimeofday.o \
|
||||
termios/tcgetwinsize.o \
|
||||
time/clock_getres.o \
|
||||
|
@ -318,7 +321,6 @@ time/timer_settime.o \
|
|||
time/times.o \
|
||||
tmpfile.o \
|
||||
tmpnam.o \
|
||||
umask.o \
|
||||
unistd/access.o \
|
||||
unistd/alarmns.o \
|
||||
unistd/alarm.o \
|
||||
|
@ -393,8 +395,6 @@ unistd/unlinkat.o \
|
|||
unistd/unlink.o \
|
||||
unistd/usleep.o \
|
||||
unistd/write.o \
|
||||
utimensat.o \
|
||||
utimens.o \
|
||||
utime.o \
|
||||
vscanf.o \
|
||||
wait.o \
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
chmod.cpp
|
||||
sys/stat/chmod.cpp
|
||||
Changes the mode bits of a file.
|
||||
|
||||
*******************************************************************************/
|
|
@ -17,7 +17,7 @@
|
|||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
fchmod.cpp
|
||||
sys/stat/fchmod.cpp
|
||||
Changes the mode bits of an open file.
|
||||
|
||||
*******************************************************************************/
|
|
@ -17,7 +17,7 @@
|
|||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
fchmodat.cpp
|
||||
sys/stat/fchmodat.cpp
|
||||
Changes the mode bits of a file.
|
||||
|
||||
*******************************************************************************/
|
|
@ -17,7 +17,7 @@
|
|||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
fstat.cpp
|
||||
sys/stat/fstat.cpp
|
||||
Retrieves status of an open file.
|
||||
|
||||
*******************************************************************************/
|
|
@ -17,7 +17,7 @@
|
|||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
fstatat.cpp
|
||||
sys/stat/fstatat.cpp
|
||||
Retrieves status of an open file.
|
||||
|
||||
*******************************************************************************/
|
|
@ -17,7 +17,7 @@
|
|||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
futimens.cpp
|
||||
sys/stat/futimens.cpp
|
||||
Change file last access and modification times.
|
||||
|
||||
*******************************************************************************/
|
|
@ -17,7 +17,7 @@
|
|||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
lstat.cpp
|
||||
sys/stat/lstat.cpp
|
||||
Retrieves status of a file.
|
||||
|
||||
*******************************************************************************/
|
|
@ -17,7 +17,7 @@
|
|||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
mkdir.cpp
|
||||
sys/stat/mkdir.cpp
|
||||
Creates a new directory.
|
||||
|
||||
*******************************************************************************/
|
|
@ -17,7 +17,7 @@
|
|||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
mkdirat.cpp
|
||||
sys/stat/mkdirat.cpp
|
||||
Creates a new directory.
|
||||
|
||||
*******************************************************************************/
|
|
@ -17,7 +17,7 @@
|
|||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
stat.cpp
|
||||
sys/stat/stat.cpp
|
||||
Retrieves status of a file.
|
||||
|
||||
*******************************************************************************/
|
|
@ -17,7 +17,7 @@
|
|||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
umask.cpp
|
||||
sys/stat/umask.cpp
|
||||
Set file mode creation mask.
|
||||
|
||||
*******************************************************************************/
|
|
@ -17,7 +17,7 @@
|
|||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
utimens.cpp
|
||||
sys/stat/utimens.cpp
|
||||
Change file last access and modification times.
|
||||
|
||||
*******************************************************************************/
|
|
@ -17,7 +17,7 @@
|
|||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with the Sortix C Library. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
utimensat.cpp
|
||||
sys/stat/utimensat.cpp
|
||||
Change file last access and modification times.
|
||||
|
||||
*******************************************************************************/
|
Loading…
Reference in a new issue