From 04b9dc2d30cfc9b383029f6a4b02e2725108b0ae Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 4 Jul 2019 16:16:50 +0200 Subject: Libraries: Create top level directory for libraries. Things were getting a little crowded in the project root, so this patch moves the Lib*/ directories into Libraries/. --- LibC/poll.cpp | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 LibC/poll.cpp (limited to 'LibC/poll.cpp') diff --git a/LibC/poll.cpp b/LibC/poll.cpp deleted file mode 100644 index 9394048801..0000000000 --- a/LibC/poll.cpp +++ /dev/null @@ -1,12 +0,0 @@ -#include -#include -#include - -extern "C" { - -int poll(struct pollfd* fds, int nfds, int timeout) -{ - int rc = syscall(SC_poll, fds, nfds, timeout); - __RETURN_WITH_ERRNO(rc, rc, -1); -} -} -- cgit v1.2.3