aboutsummaryrefslogtreecommitdiff
path: root/libk/stdlib.h
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2021-03-19 18:48:38 +0200
committerAqua-sama <aqua@iserlohn-fortress.net>2021-03-19 18:48:38 +0200
commit01d887955f72b561a6e604c96292f8f1053d3839 (patch)
tree4902f84aee401684c3864d9b475ed57344296c25 /libk/stdlib.h
parentcpuid: show manufacturer and model (diff)
downloadkernel.cpp-01d887955f72b561a6e604c96292f8f1053d3839.tar.xz
Add quicksort implementation to stdlib
Diffstat (limited to 'libk/stdlib.h')
-rw-r--r--libk/stdlib.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libk/stdlib.h b/libk/stdlib.h
index 0fd1ad8..fe8736d 100644
--- a/libk/stdlib.h
+++ b/libk/stdlib.h
@@ -1,5 +1,6 @@
#pragma once
+#include <stdlib/quicksort.h>
#include <string.h>
template <typename T, bool reverse = false>