1
0
mirror of https://github.com/openbsd/src.git synced 2025-01-10 06:47:55 -08:00

Remove a bogotified comment

This commit is contained in:
guenther 2014-11-16 04:50:46 +00:00
parent 34278d36bd
commit 053196f06f

View File

@ -1,4 +1,4 @@
/* $OpenBSD: extern.h,v 1.16 2014/11/16 04:49:48 guenther Exp $ */
/* $OpenBSD: extern.h,v 1.17 2014/11/16 04:50:46 guenther Exp $ */
/* $NetBSD: extern.h,v 1.5 1995/04/24 12:22:18 cgd Exp $ */
/*
@ -50,7 +50,6 @@
#define OUTSIDE (position > 68 && position < 246 && position != 218)
#define rnd(x) arc4random_uniform(x)
#define max(a,b) ((a) < (b) ? (b) : (a))
/* avoid name collision with sys/param.h */
#define TestBit(array, index) (array[index/BITS] & (1 << (index % BITS)))
#define SetBit(array, index) (array[index/BITS] |= (1 << (index % BITS)))
#define ClearBit(array, index) (array[index/BITS] &= ~(1 << (index % BITS)))