From e9825719535edf016c6c86b7cd899c624f987c97 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Mon, 28 May 2012 19:48:20 +0200 Subject: [PATCH] software/libbase: remove fabsf --- software/libbase/vsnprintf.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/software/libbase/vsnprintf.c b/software/libbase/vsnprintf.c index 92ef590cf..a257ab70d 100644 --- a/software/libbase/vsnprintf.c +++ b/software/libbase/vsnprintf.c @@ -22,8 +22,6 @@ #include #include -#define fabsf(x) ((x) > 0.0 ? x : -x) - /** * vsnprintf - Format a string and place it in a buffer * @buf: The buffer to place the result into