K 10 svn:author V 4 nate K 8 svn:date V 27 1993-06-30T22:59:18.000000Z K 7 svn:log V 221 Added (protection) around negative constants, in case a program wants to use the negative of that constant. #define NEG_NUM -3 #define SAFE_NEG_NUM (-3) i = -NEG_NUM; /* Error --3 */ j = -SAFE_NEG_NUM /* Okay -(-3) */ END