xref: /dflybsd-src/contrib/libpcap/optimize.h (revision 3a289941c307ff3d45415fd0d643fa7c8a113dff)
1*3a289941SAaron LI /*
2*3a289941SAaron LI  * Copyright (c) 1990, 1991, 1992, 1993, 1994, 1995, 1996
3*3a289941SAaron LI  *	The Regents of the University of California.  All rights reserved.
4*3a289941SAaron LI  *
5*3a289941SAaron LI  * Redistribution and use in source and binary forms, with or without
6*3a289941SAaron LI  * modification, are permitted provided that: (1) source code distributions
7*3a289941SAaron LI  * retain the above copyright notice and this paragraph in its entirety, (2)
8*3a289941SAaron LI  * distributions including binary code include the above copyright notice and
9*3a289941SAaron LI  * this paragraph in its entirety in the documentation or other materials
10*3a289941SAaron LI  * provided with the distribution, and (3) all advertising materials mentioning
11*3a289941SAaron LI  * features or use of this software display the following acknowledgement:
12*3a289941SAaron LI  * ``This product includes software developed by the University of California,
13*3a289941SAaron LI  * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
14*3a289941SAaron LI  * the University nor the names of its contributors may be used to endorse
15*3a289941SAaron LI  * or promote products derived from this software without specific prior
16*3a289941SAaron LI  * written permission.
17*3a289941SAaron LI  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
18*3a289941SAaron LI  * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
19*3a289941SAaron LI  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
20*3a289941SAaron LI  */
21*3a289941SAaron LI 
22*3a289941SAaron LI /*
23*3a289941SAaron LI  * Some stuff for use when debugging the optimizer.
24*3a289941SAaron LI  */
25*3a289941SAaron LI #ifdef BDEBUG
26*3a289941SAaron LI #define NBIDS	1000
27*3a289941SAaron LI extern int bids[NBIDS];
28*3a289941SAaron LI #endif
29