diff options
author | Marin Ramesa <mpr@hi.t-com.hr> | 2013-11-16 10:07:31 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-11-17 21:42:34 +0100 |
commit | e9e9c47f7f398a590deb4c2491488394d7247166 (patch) | |
tree | ee9e1cfd17b5a55e0cb28472842b1f22ce257fb8 | |
parent | aaaf735dfb76b1c933a157a56940c39f2483e32a (diff) |
ddb/stab.h: add ifndef
* ddb/stab.h: Add ifndef.
-rw-r--r-- | ddb/stab.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -33,6 +33,8 @@ * @(#)stab.h 5.2 (Berkeley) 4/4/91 */ +#ifndef _DDB_STAB_H_ +#define _DDB_STAB_H_ /* * The following are symbols used by various debuggers and by the Pascal @@ -67,3 +69,5 @@ #define N_ECOMM 0xe4 /* end common */ #define N_ECOML 0xe8 /* end common (local name) */ #define N_LENG 0xfe /* length of preceding entry */ + +#endif /* _DDB_STAB_H_ */ |