1/*
2 * Copyright (c) 1982 Regents of the University of California.
3 * All rights reserved.  The Berkeley software License Agreement
4 * specifies the terms and conditions for redistribution.
5 *
6 *	@(#)bp.rep	5.1 (Berkeley) 06/07/85
7 */
8
9/*
10 * breakpoint representation
11 */
12
13typedef struct bpinfo {
14	unsigned int bpid;
15	ADDRESS bpaddr;
16	BPTYPE bptype;
17	SYM *bpblock;
18	NODE *bpcond;
19	NODE *bpnode;
20	LINENO bpline;
21	struct bpinfo *bpnext;
22} BPINFO;
23
24BPINFO *bphead;
25BPINFO *newbp();
26