From 715274d3a77c58510b97c3f87cd604dde9de7a4f Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Fri, 27 Oct 2023 19:39:54 +0200 Subject: Kernel: Move min, max functions to their own file --- includes/math.h | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 includes/math.h (limited to 'includes/math.h') diff --git a/includes/math.h b/includes/math.h new file mode 100644 index 0000000..19fc595 --- /dev/null +++ b/includes/math.h @@ -0,0 +1,2 @@ +int min(int a, int b); +int max(int a, int b); -- cgit v1.2.3