Move poll.h functions into their own directory.

This commit is contained in:
Jonas 'Sortie' Termansen 2013-06-25 00:22:24 +02:00
parent 7668d2bc0b
commit 50ae094c6f
3 changed files with 4 additions and 4 deletions

View File

@ -288,9 +288,9 @@ netdb/setprotoent.o \
netdb/setservent.o \ netdb/setservent.o \
pathconf.o \ pathconf.o \
pipe.o \ pipe.o \
poll.o \ poll/poll.o \
poll/ppoll.o \
popen.o \ popen.o \
ppoll.o \
preadv.o \ preadv.o \
print.o \ print.o \
psignal.o \ psignal.o \

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/>.
poll.cpp poll/poll.cpp
Input/output multiplexing. Input/output multiplexing.
*******************************************************************************/ *******************************************************************************/

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/>.
ppoll.cpp poll/ppoll.cpp
Input/output multiplexing. Input/output multiplexing.
*******************************************************************************/ *******************************************************************************/