X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flibpspp%2Fmisc.h;h=fea0e28e5e64a98b2037dd0dc97fc6adcfb299f0;hb=338fb2a2e84df6427a2fdee6769421f57d5666d8;hp=16f16b97ae4309c64b9aa141004915480e893335;hpb=946282d65fa0142e38d10f78d2c699dacf95300e;p=pspp diff --git a/src/libpspp/misc.h b/src/libpspp/misc.h index 16f16b97ae..fea0e28e5e 100644 --- a/src/libpspp/misc.h +++ b/src/libpspp/misc.h @@ -43,9 +43,6 @@ #include /* 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))