+#ifndef MIN
+#define        MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))

Please use MINIMUM() for the name, as elsewhere.  You also don't need the _.

Reply via email to