xiaoxiang781216 commented on code in PR #17901:
URL: https://github.com/apache/nuttx/pull/17901#discussion_r2691476823


##########
libs/libm/libm/lib_atanf.c:
##########
@@ -36,7 +36,10 @@
  * Public Functions
  ****************************************************************************/
 
+#define ABS(a) ((a) > 0 ? (a) : -(a))
+#define MAX(a,b) (((a) > (b)) ? (a) : (b))

Review Comment:
   remove, use macro from sys/param.h



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to