From e8bc31b7985d9cd4e88fcc5a9fcd978a463c9a0f Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Tue, 25 Jun 2013 13:01:37 +0200 Subject: [PATCH] Move sys/select.h functions into their own directory. --- libc/Makefile | 2 +- libc/{ => sys/select}/select.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename libc/{ => sys/select}/select.cpp (98%) diff --git a/libc/Makefile b/libc/Makefile index 30d9ef28..7bacc6e1 100644 --- a/libc/Makefile +++ b/libc/Makefile @@ -237,7 +237,6 @@ remove.o \ renameat.o \ rename.o \ scanf.o \ -select.o \ signal/kill.o \ signal/psignal.o \ signal/raise.o \ @@ -259,6 +258,7 @@ stdlib/rand.o \ stdlib/realpath.o \ stdlib/system.o \ sys/display/dispmsg_issue.o \ +sys/select/select.o \ sys/socket/accept4.o \ sys/socket/accept.o \ sys/socket/bind.o \ diff --git a/libc/select.cpp b/libc/sys/select/select.cpp similarity index 98% rename from libc/select.cpp rename to libc/sys/select/select.cpp index ab54d9da..0c68ef13 100644 --- a/libc/select.cpp +++ b/libc/sys/select/select.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 . - select.cpp + sys/select/select.cpp Waiting on multiple file descriptors. *******************************************************************************/