Finish converting struct variable to an opaque type. In this
[pspp] / src / libpspp / misc.h
index 16f16b97ae4309c64b9aa141004915480e893335..fea0e28e5e64a98b2037dd0dc97fc6adcfb299f0 100644 (file)
@@ -43,9 +43,6 @@
 #include <ieeefp.h>            /* Declares finite() under Solaris. */
 #endif
 
-/* Clamps A to be between B and C. */
-#define range(A, B, C) ((A) < (B) ? (B) : ((A) > (C) ? (C) : (A)))
-
 /* Divides nonnegative X by positive Y, rounding up. */
 #define DIV_RND_UP(X, Y) (((X) + ((Y) - 1)) / (Y))