Deleted Added
full compact
stab.h (1540) stab.h (2162)
1/*-
2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 19 unchanged lines hidden (view full) ---

28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)stab.h 8.1 (Berkeley) 6/2/93
34 */
35
1/*-
2 * Copyright (c) 1991, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 19 unchanged lines hidden (view full) ---

28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)stab.h 8.1 (Berkeley) 6/2/93
34 */
35
36#ifndef _STAB_H_
37#define _STAB_H_
38
36/*
37 * The following are symbols used by various debuggers and by the Pascal
38 * compiler. Each of them must have one (or more) of the bits defined by
39 * the N_STAB mask set.
40 */
41
42#define N_GSYM 0x20 /* global symbol */
43#define N_FNAME 0x22 /* F77 function name */

--- 16 unchanged lines hidden (view full) ---

60#define N_ENTRY 0xa4 /* alternate entry point */
61#define N_LBRAC 0xc0 /* left bracket */
62#define N_EXCL 0xc2 /* deleted include file */
63#define N_RBRAC 0xe0 /* right bracket */
64#define N_BCOMM 0xe2 /* begin common */
65#define N_ECOMM 0xe4 /* end common */
66#define N_ECOML 0xe8 /* end common (local name) */
67#define N_LENG 0xfe /* length of preceding entry */
39/*
40 * The following are symbols used by various debuggers and by the Pascal
41 * compiler. Each of them must have one (or more) of the bits defined by
42 * the N_STAB mask set.
43 */
44
45#define N_GSYM 0x20 /* global symbol */
46#define N_FNAME 0x22 /* F77 function name */

--- 16 unchanged lines hidden (view full) ---

63#define N_ENTRY 0xa4 /* alternate entry point */
64#define N_LBRAC 0xc0 /* left bracket */
65#define N_EXCL 0xc2 /* deleted include file */
66#define N_RBRAC 0xe0 /* right bracket */
67#define N_BCOMM 0xe2 /* begin common */
68#define N_ECOMM 0xe4 /* end common */
69#define N_ECOML 0xe8 /* end common (local name) */
70#define N_LENG 0xfe /* length of preceding entry */
71
72#endif