HardenedBSD/sys
Nate Williams beb7ebb072 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) */
1993-06-30 22:59:18 +00:00
..
alpha/include/pc
amd64 Added (protection) around negative constants, in case a program wants 1993-06-30 22:59:18 +00:00
conf
ddb
dev
i386 Added (protection) around negative constants, in case a program wants 1993-06-30 22:59:18 +00:00
isa
kern
powerpc/include
scsi
sys