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/poll.o \
poll/ppoll.o \ poll/ppoll.o \
popen.o \ popen.o \
preadv.o \
print.o \ print.o \
putc.o \ putc.o \
pwd/pwent.o \ pwd/pwent.o \
pwritev.o \
readdirents.o \ readdirents.o \
readv.o \
removeat.o \ removeat.o \
remove.o \ remove.o \
renameat.o \ renameat.o \
@ -297,6 +294,10 @@ sys/stat/umask.o \
sys/stat/utimensat.o \ sys/stat/utimensat.o \
sys/stat/utimens.o \ sys/stat/utimens.o \
sys/time/gettimeofday.o \ sys/time/gettimeofday.o \
sys/uio/preadv.o \
sys/uio/pwritev.o \
sys/uio/readv.o \
sys/uio/writev.o \
termios/tcgetwinsize.o \ termios/tcgetwinsize.o \
time/clock_getres.o \ time/clock_getres.o \
time/clock_gettime.o \ time/clock_gettime.o \
@ -399,7 +400,6 @@ utime.o \
vscanf.o \ vscanf.o \
wait.o \ wait.o \
waitpid.o \ waitpid.o \
writev.o \
OBJS=\ OBJS=\
$(FREEOBJS) \ $(FREEOBJS) \

View File

@ -17,7 +17,7 @@
You should have received a copy of the GNU Lesser General Public License 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/>. 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. Read data into multiple buffers.
*******************************************************************************/ *******************************************************************************/

View File

@ -17,7 +17,7 @@
You should have received a copy of the GNU Lesser General Public License 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/>. 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. Write data from multiple buffers.
*******************************************************************************/ *******************************************************************************/

View File

@ -17,7 +17,7 @@
You should have received a copy of the GNU Lesser General Public License 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/>. 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. Read data into multiple buffers.
*******************************************************************************/ *******************************************************************************/

View File

@ -17,7 +17,7 @@
You should have received a copy of the GNU Lesser General Public License 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/>. 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. Write data from multiple buffers.
*******************************************************************************/ *******************************************************************************/