Move sys/uio.h functions into their own directory.

This commit is contained in:
Jonas 'Sortie' Termansen 2013-06-25 01:38:11 +02:00
parent ecbb19273b
commit ecb5744afb
5 changed files with 8 additions and 8 deletions

View File

@ -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) \

View 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/>.
preadv.cpp
sys/uio/preadv.cpp
Read data into multiple buffers.
*******************************************************************************/

View 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/>.
pwritev.cpp
sys/uio/pwritev.cpp
Write data from multiple buffers.
*******************************************************************************/

View 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/>.
readv.cpp
sys/uio/readv.cpp
Read data into multiple buffers.
*******************************************************************************/

View 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/>.
writev.cpp
sys/uio/writev.cpp
Write data from multiple buffers.
*******************************************************************************/