/*! \file define.h \brief testing defines This is to test the documentation of defines. */ /*! The define ABS computes the absolute value of its argument \a x. */ #define ABS(x) (((x)>0)?(x):-(x))