function.h 221 B

12345678
  1. #ifndef FUNCTION_H
  2. #define FUNCTION_H
  3. /* Sometimes we want to keep parameters to a function for later use
  4. * and this is a solution to avoid the 'unused parameter' compiler warning */
  5. #define UNUSED(x) (void)(x)
  6. #endif