From b5fe41f41a88f3763d02db4f2dfa7e13617e9fc3 Mon Sep 17 00:00:00 2001 From: Ray Date: Tue, 4 Feb 2020 16:55:24 +0100 Subject: Review libc dependencies and remove when possible Just for clarification, no plans to remove libc dependency, just did some code analysis to see how much raylib depend on stardard C library. My conclusions: - stdlib.h: primary dependency is for malloc() and free() - stdio.h: primary dependency is for FILE access, maybe it could go through a custom ABI? - string.h: just around 8 functions required - math.h: just around 8 functions required - others: 1-2 functions required for some other headers --- src/camera.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/camera.h') diff --git a/src/camera.h b/src/camera.h index 6d24c4b4..d54339ac 100644 --- a/src/camera.h +++ b/src/camera.h @@ -133,7 +133,7 @@ void SetCameraMoveControls(int frontKey, int backKey, #if defined(CAMERA_IMPLEMENTATION) -#include // Required for: sqrt(), sinf(), cosf() +#include // Required for: sinf(), cosf(), sqrtf() #ifndef PI #define PI 3.14159265358979323846 -- cgit v1.2.3