# define ignore_result(x) (void)(x)
#endif
-/* Macros to set/clear/test flags. */
-#undef SET
-#define SET(t, f) ((t) |= (f))
-#undef CLR
-#define CLR(t, f) ((t) &= ~(f))
-#undef ISSET
-#define ISSET(t, f) ((t) & (f))
-
/* BSD compatibility on some SVR4 systems. */
#ifdef __svr4__
# define BSD_COMP
# define ignore_result(x) (void)(x)
#endif
-/* Macros to set/clear/test flags. */
-#undef SET
-#define SET(t, f) ((t) |= (f))
-#undef CLR
-#define CLR(t, f) ((t) &= ~(f))
-#undef ISSET
-#define ISSET(t, f) ((t) & (f))
-
/* BSD compatibility on some SVR4 systems. */
#ifdef __svr4__
# define BSD_COMP
# define MAX(a,b) (((a)>(b))?(a):(b))
#endif
+/* Macros to set/clear/test flags. */
+#undef SET
+#define SET(t, f) ((t) |= (f))
+#undef CLR
+#define CLR(t, f) ((t) &= ~(f))
+#undef ISSET
+#define ISSET(t, f) ((t) & (f))
+
/*
* Some systems define this in <sys/param.h> but we don't include that anymore.
*/