From: Sebastien Bourdeauducq Date: Mon, 28 May 2012 17:48:20 +0000 (+0200) Subject: software/libbase: remove fabsf X-Git-Tag: 24jan2021_ls180~3149 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e9825719535edf016c6c86b7cd899c624f987c97;p=litex.git software/libbase: remove fabsf --- diff --git a/software/libbase/vsnprintf.c b/software/libbase/vsnprintf.c index 92ef590c..a257ab70 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