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