summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorpk <pk@NetBSD.org>1994-10-19 20:29:41 +0000
committerpk <pk@NetBSD.org>1994-10-19 20:29:41 +0000
commit40401eba783c157732ee9f010be78a0a4ffbf2bd (patch)
treeca0f877ae1768f44a75e3a6421eb9382344f3abd /include
parentc13cbefe95c6b109d21e5be0913c82c2f370fd3d (diff)
Define more symbol types which are in common use now.
Diffstat (limited to 'include')
-rw-r--r--include/nlist.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/include/nlist.h b/include/nlist.h
index 78edbbad62a..0f0ab44eca4 100644
--- a/include/nlist.h
+++ b/include/nlist.h
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* from: @(#)nlist.h 8.2 (Berkeley) 1/21/94
- * $Id: nlist.h,v 1.3 1994/05/16 10:58:58 cgd Exp $
+ * $Id: nlist.h,v 1.4 1994/10/19 20:29:41 pk Exp $
*/
#ifndef _NLIST_H_
@@ -61,8 +61,11 @@ struct nlist {
#define N_TEXT 0x04 /* text segment */
#define N_DATA 0x06 /* data segment */
#define N_BSS 0x08 /* bss segment */
+#define N_INDR 0x0a /* alias definition */
+#define N_SIZE 0x0c /* pseudo type, defines a symbol's size */
#define N_COMM 0x12 /* common reference */
-#define N_FN 0x1e /* file name */
+#define N_FN 0x1e /* file name (N_EXT on) */
+#define N_WARN 0x1e /* warning message (N_EXT off) */
#define N_EXT 0x01 /* external (global) bit, OR'ed in */
#define N_TYPE 0x1e /* mask for all the type bits */