summaryrefslogtreecommitdiff
path: root/LibC/times.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-07-04 16:16:50 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-07-04 16:16:50 +0200
commit04b9dc2d30cfc9b383029f6a4b02e2725108b0ae (patch)
treee117a998173b767f9fd009d49c4f8573d8b85432 /LibC/times.cpp
parent63814ffebf16291419745cd8ba29a4d2fd888563 (diff)
downloadserenity-04b9dc2d30cfc9b383029f6a4b02e2725108b0ae.zip
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/.
Diffstat (limited to 'LibC/times.cpp')
-rw-r--r--LibC/times.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/LibC/times.cpp b/LibC/times.cpp
deleted file mode 100644
index 76301ec0e0..0000000000
--- a/LibC/times.cpp
+++ /dev/null
@@ -1,9 +0,0 @@
-#include <Kernel/Syscall.h>
-#include <errno.h>
-#include <sys/times.h>
-
-clock_t times(struct tms* buf)
-{
- int rc = syscall(SC_times, buf);
- __RETURN_WITH_ERRNO(rc, rc, (clock_t)-1);
-}