#ifndef MATH_qh #define MATH_qh 1 @extern { #define min(a, b) ((a)>(b)?(b):(a)) #define max(a, b) ((a)>(b)?(a):(b)) }; #endif