From ecb5744afb68ce0b61a7a99e8e7f1fd442bb5a4f Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Tue, 25 Jun 2013 01:38:11 +0200 Subject: [PATCH] Move sys/uio.h functions into their own directory. --- libc/Makefile | 8 ++++---- libc/{ => sys/uio}/preadv.cpp | 2 +- libc/{ => sys/uio}/pwritev.cpp | 2 +- libc/{ => sys/uio}/readv.cpp | 2 +- libc/{ => sys/uio}/writev.cpp | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) rename libc/{ => sys/uio}/preadv.cpp (98%) rename libc/{ => sys/uio}/pwritev.cpp (98%) rename libc/{ => sys/uio}/readv.cpp (98%) rename libc/{ => sys/uio}/writev.cpp (98%) diff --git a/libc/Makefile b/libc/Makefile index 6855e226..7016b1d5 100644 --- a/libc/Makefile +++ b/libc/Makefile @@ -230,13 +230,10 @@ netdb/setservent.o \ poll/poll.o \ poll/ppoll.o \ popen.o \ -preadv.o \ print.o \ putc.o \ pwd/pwent.o \ -pwritev.o \ readdirents.o \ -readv.o \ removeat.o \ remove.o \ renameat.o \ @@ -297,6 +294,10 @@ sys/stat/umask.o \ sys/stat/utimensat.o \ sys/stat/utimens.o \ sys/time/gettimeofday.o \ +sys/uio/preadv.o \ +sys/uio/pwritev.o \ +sys/uio/readv.o \ +sys/uio/writev.o \ termios/tcgetwinsize.o \ time/clock_getres.o \ time/clock_gettime.o \ @@ -399,7 +400,6 @@ utime.o \ vscanf.o \ wait.o \ waitpid.o \ -writev.o \ OBJS=\ $(FREEOBJS) \ diff --git a/libc/preadv.cpp b/libc/sys/uio/preadv.cpp similarity index 98% rename from libc/preadv.cpp rename to libc/sys/uio/preadv.cpp index 0ae1c9d7..35f4b9e2 100644 --- a/libc/preadv.cpp +++ b/libc/sys/uio/preadv.cpp @@ -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 . - preadv.cpp + sys/uio/preadv.cpp Read data into multiple buffers. *******************************************************************************/ diff --git a/libc/pwritev.cpp b/libc/sys/uio/pwritev.cpp similarity index 98% rename from libc/pwritev.cpp rename to libc/sys/uio/pwritev.cpp index ee6c3331..80024dac 100644 --- a/libc/pwritev.cpp +++ b/libc/sys/uio/pwritev.cpp @@ -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 . - pwritev.cpp + sys/uio/pwritev.cpp Write data from multiple buffers. *******************************************************************************/ diff --git a/libc/readv.cpp b/libc/sys/uio/readv.cpp similarity index 98% rename from libc/readv.cpp rename to libc/sys/uio/readv.cpp index b800b23c..5e27cec1 100644 --- a/libc/readv.cpp +++ b/libc/sys/uio/readv.cpp @@ -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 . - readv.cpp + sys/uio/readv.cpp Read data into multiple buffers. *******************************************************************************/ diff --git a/libc/writev.cpp b/libc/sys/uio/writev.cpp similarity index 98% rename from libc/writev.cpp rename to libc/sys/uio/writev.cpp index 26066cdc..2300e9cd 100644 --- a/libc/writev.cpp +++ b/libc/sys/uio/writev.cpp @@ -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 . - writev.cpp + sys/uio/writev.cpp Write data from multiple buffers. *******************************************************************************/